forked from agmoyano/angular-formly-templates-material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.64 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
{
"name": "angular-formly-templates-material",
"version": "1.0.0-beta.0",
"author": "Kent C. Dodds <[email protected]>",
"contributors": [
"Kent C. Dodds <[email protected]>"
],
"homepage": "http://formly-js.github.io/angular-formly-templates-material/",
"repository": {
"type": "git",
"url": "git://github.com/formly-js/angular-formly-templates-material.git"
},
"main": "dist/angular-formly-templates-material.js",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/formly-js/angular-formly-templates-material/master/LICENSE"
}
],
"scripts": {
"build:dist": "NODE_ENV=development webpack --config node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors",
"build:prod": "NODE_ENV=production webpack --config node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors",
"build": "npm run build:dist & npm run build:prod",
"test": "NODE_ENV=test COVERAGE=true karma start",
"test:single": "NODE_ENV=test COVERAGE=true karma start --single-run",
"test:debug": "NODE_ENV=test karma start --browsers Chrome",
"test:ci": "NODE_ENV=test:ci karma start",
"start": "npm run test",
"check-coverage": "istanbul check-coverage --statements 91 --branches 85 --functions 89 --lines 90",
"report-coverage": "echo 'Reporting coverage stats' && cat ./coverage/lcov.info | codecov",
"only-check": "node node_modules/kcd-common-tools/shared/scripts/only-check.js",
"console-check": "node node_modules/kcd-common-tools/shared/scripts/console-check.js",
"code-checks": "npm run only-check && npm run console-check",
"release": "npm run build && with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags",
"release:beta": "npm run release && npm run tag:beta",
"tag:beta": "with-package npm dist-tag add [email protected] beta"
},
"config": {
"ghooks": {
"pre-commit": "npm run code-checks && npm run test:single && npm run check-coverage"
}
},
"kcdCommon": {
"webpack": "scripts/webpack-overrides.js",
"karma": "scripts/karma-overrides.js"
},
"description": "Angular-Formly plugin which outputs material compatible form fields.",
"peerDependencies": {
"angular": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
"angular-animate": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
"angular-aria": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
"angular-material": ">=0.10.0 || >= 1.0.0-beta.0",
"angular-formly": ">=6.0.0",
"api-check": ">=7.0.0"
},
"devDependencies": {
"angular": "1.3.15",
"angular-animate": "1.3.15",
"angular-aria": "1.3.15",
"angular-formly": "6.15.1",
"angular-material": "0.10.0",
"angular-mocks": "1.4.1",
"api-check": "7.5.0",
"babel": "5.6.4",
"babel-core": "5.6.4",
"babel-eslint": "3.1.17",
"babel-loader": "5.1.4",
"chai": "3.0.0",
"eslint": "0.23.0",
"eslint-loader": "0.14.0",
"ghooks": "0.3.2",
"isparta": "3.0.3",
"isparta-loader": "0.2.0",
"istanbul": "0.3.15",
"karma": "0.12.36",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.1.12",
"karma-coverage": "0.4.2",
"karma-firefox-launcher": "0.1.6",
"karma-mocha": "0.2.0",
"karma-sinon": "1.0.4",
"karma-webpack": "1.5.1",
"kcd-common-tools": "1.0.0-beta.9",
"lodash": "^3.8.0",
"mocha": "2.2.5",
"ng-annotate": "1.0.0",
"ng-annotate-loader": "0.0.4",
"node-libs-browser": "0.5.2",
"raw-loader": "0.5.1",
"sinon": "1.15.3",
"sinon-chai": "2.8.0",
"webpack": "1.9.11",
"with-package": "0.2.0"
}
}