-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@beer-garden/builder",
"version": "0.0.2",
"description": "AngularJS module to generate Angular-Schema-Form from JSON",
"author": "The Beergarden Team",
"contributors": [],
"license": "MIT",
"keywords": [
"angular"
],
"main": "dist/builder.js",
"scripts": {
"build": "yarn build:dev && yarn build:prod",
"build:dev": "webpack --config webpack.dev.js --mode development",
"build:prod": "webpack --config webpack.prod.js --mode production",
"clean": "rm -r dist/",
"test": "jest"
},
"dependencies": {
"objectpath": "^1.2.1"
},
"peerDependencies": {
"angular": "^1.6.0",
"angular-schema-form": "1.0.0-alpha.4",
"lodash": "^4.17.5"
},
"devDependencies": {
"angular": "^1.6.0",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"jest": "^22.4.3",
"sinon": "^4.4.8",
"sinon-chai": "^3.0.0",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-merge": "^4.1.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"setupTestFrameworkScriptFile": "<rootDir>/test/setup_jest.js",
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
}
}
}