forked from formly-js/angular-formly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "angular-formly",
"version": "3.0.0-beta.1",
"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: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"
},
"description": "AngularJS directive which takes JSON representing a form and renders to HTML",
"peerDependencies": {
"angular": "~1.x"
},
"devDependencies": {
"6to5": "^3.0.10",
"6to5-loader": "^3.0.0",
"angular": "^1.3.11",
"angular-mocks": "^1.3.11",
"chai": "^1.10.0",
"deep-extend": "^0.3.2",
"grunt": "^0.4.5",
"grunt-gh-pages": "^0.9.1",
"jshint": "^2.6.0",
"jshint-loader": "^0.8.1",
"karma": "^0.12.31",
"karma-chai-sinon": "^0.1.4",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-webpack": "^1.5.0",
"lodash": "^2.4.1",
"lodash-node": "^2.4.1",
"mocha": "^2.1.0",
"ng-annotate": "^0.15.1",
"raw-loader": "^0.5.1",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
}
}