forked from formly-js/angular-formly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.36 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "angular-formly",
"version": "4.2.5",
"author": "Astrism <[email protected]>",
"contributors": [
"Astrism <[email protected]>",
"Kent C. Dodds <[email protected]>"
],
"homepage": "http://formly-js.github.io/angular-formly/",
"repository": {
"type": "git",
"url": "git://github.com/formly-js/angular-formly.git"
},
"main": "dist/formly.js",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/formly-js/angular-formly/master/LICENSE"
}
],
"scripts": {
"build:dist": "node node_modules/webpack/bin/webpack.js",
"build:prod": "node node_modules/webpack/bin/webpack.js --config webpack.config.minify.js",
"build": "npm run build:dist; npm run build:prod",
"test": "node node_modules/karma/bin/karma start karma.conf.js",
"test:single": "node node_modules/karma/bin/karma start karma.conf.js --single-run",
"test:ci": "node node_modules/karma/bin/karma start karma.conf.ci.js",
"watch": "node node_modules/webpack/bin/webpack.js --watch",
"start": "npm run watch & npm run test",
"deploy": "grunt deploy",
"release": "git push && npm publish && git push --tags"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:single"
}
},
"description": "AngularJS directive which takes JSON representing a form and renders to HTML",
"peerDependencies": {
"angular": "^1.x",
"api-check": "^6.0.10"
},
"devDependencies": {
"angular": "^1.3.11",
"angular-mocks": "^1.3.11",
"api-check": "^6.0.10",
"babel-core": "^4.4.6",
"babel-loader": "^4.0.0",
"chai": "^1.10.0",
"deep-extend": "^0.3.2",
"ghooks": "^0.2.4",
"grunt": "^0.4.5",
"grunt-gh-pages": "^0.9.1",
"imports-loader": "^0.6.3",
"jshint": "2.6.0",
"jshint-loader": "^0.8.1",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-webpack": "^1.5.0",
"loader-utils": "^0.2.6",
"lodash": "^2.4.1",
"lodash-node": "^2.4.1",
"mocha": "^2.1.0",
"ng-annotate": "^0.15.1",
"ng-annotate-loader": "0.0.2",
"raw-loader": "^0.5.1",
"sinon": "git://github.com/cjohansen/Sinon.JS#sinon-2.0",
"sinon-chai": "^2.6.0",
"source-map": "^0.2.0",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
}
}