This repository has been archived by the owner on Apr 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 404
/
package.json
122 lines (122 loc) · 3.82 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "angular-formly",
"version": "0.0.0-semantically-released.0",
"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": "https://github.com/formly-js/angular-formly.git"
},
"keywords": [
"angular",
"forms",
"angular-formly",
"formly",
"angularjs",
"angular forms",
"json forms",
"form library"
],
"main": "dist/formly.js",
"license": "MIT",
"scripts": {
"build:dist": "webpack --progress --colors --set-env-NODE_ENV=development",
"build:prod": "webpack --progress --colors --set-env-NODE_ENV=production",
"build": "npm run build:dist & npm run build:prod",
"eslint:test": "eslint -c other/test.eslintrc --ignore-pattern **/*.{test,mock}.js src/",
"eslint:src": "eslint -c other/src.eslintrc --ignore-pattern !**/*.{test,mock}.js src/",
"eslint": "npm run eslint:test -s && npm run eslint:src -s",
"test": "karma start --single-run --set-env-COVERAGE=true --set-env-NODE_ENV=test",
"test:watch": "karma start --set-env-COVERAGE=true --set-env-NODE_ENV=test",
"test:debug": "karma start --browsers Chrome --set-env-NODE_ENV=test",
"start": "npm run test:watch",
"check-coverage": "istanbul check-coverage --statements 93 --branches 89 --functions 92 --lines 92",
"report-coverage": "cat ./coverage/lcov.info | node_modules/.bin/codecov",
"commit": "git-cz",
"publish-latest": "publish-latest --user-email [email protected] --user-name formly-bot",
"meteor": "gulp meteor",
"semantic-release": "semantic-release pre && npm run build && npm run meteor && npm publish && npm run publish-latest && semantic-release post"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg && npm run eslint && npm t && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"description": "AngularJS directive which takes JSON representing a form and renders to HTML",
"peerDependencies": {
"angular": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
"api-check": "^7.0.0"
},
"devDependencies": {
"angular": "1.5.0",
"angular-mocks": "1.5.0",
"api-check": "7.5.5",
"argv-set-env": "1.0.1",
"babel": "5.8.23",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.2",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.7.2",
"cracks": "3.1.2",
"cz-conventional-changelog": "1.1.5",
"deindent": "0.1.0",
"eslint": "1.7.3",
"eslint-config-kentcdodds": "5.0.0",
"eslint-loader": "1.1.0",
"eslint-plugin-mocha": "1.0.0",
"ghooks": "1.0.3",
"gulp": "3.9.1",
"gulp-replace": "0.5.4",
"http-server": "0.9.0",
"isparta": "3.1.0",
"isparta-loader": "1.0.0",
"istanbul": "0.4.2",
"karma": "0.13.22",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.5",
"karma-firefox-launcher": "0.1.7",
"karma-mocha": "0.2.2",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.2.0",
"karma-webpack": "1.7.0",
"lodash": "4.6.1",
"lolex": "1.4.0",
"mocha": "2.4.5",
"ng-annotate": "1.2.1",
"ng-annotate-loader": "0.1.0",
"node-libs-browser": "1.0.0",
"path-here": "1.1.0",
"publish-latest": "1.1.2",
"raw-loader": "0.5.1",
"semantic-release": "4.3.5",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"validate-commit-msg": "2.3.1",
"webpack": "1.12.14",
"webpack-notifier": "1.3.0"
},
"jspm": {
"peerDependencies": {
"angular": "*"
}
},
"release": {
"verfiyRelease": {
"path": "cracks",
"paths": [
"src",
"package.json"
],
"silent": false
}
}
}