This repository was archived by the owner on Feb 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.22 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.22 KB
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
{
"name": "az-promise-show",
"version": "1.1.2",
"description": "angular directives to show or hide an element based on the state of a promise",
"main": "dist/az-promise-show.js",
"peerDependencies": {
"angular": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0"
},
"devDependencies": {
"angular": "1.4.0",
"angular-mocks": "1.4.0",
"babel": "5.5.8",
"babel-core": "5.5.8",
"babel-eslint": "3.1.15",
"babel-loader": "5.1.4",
"better-npm-run": "benoror/better-npm-run#0.0.1",
"chai": "3.0.0",
"codecov.io": "0.1.2",
"eslint": "0.23.0",
"eslint-loader": "0.14.0",
"isparta": "3.0.3",
"isparta-loader": "0.2.0",
"istanbul": "0.3.15",
"karma": "0.12.36",
"karma-coverage": "0.4.2",
"karma-firefox-launcher": "0.1.6",
"karma-mocha": "0.1.10",
"karma-webpack": "1.5.1",
"kcd-common-tools": "1.0.0-beta.9",
"mocha": "2.2.5",
"ng-annotate": "1.0.0",
"ng-annotate-loader": "0.0.4",
"node-libs-browser": "0.5.2",
"webpack": "1.9.11",
"webpack-dev-server": "1.9.0",
"with-package": "0.2.0"
},
"scripts": {
"build:dist": "better-npm-run build:dist",
"build:prod": "better-npm-run build:prod",
"build": "npm run build:dist & npm run build:prod",
"start": "npm run test",
"test": "better-npm-run test",
"test:ci": "npm run test:single && npm run check-coverage",
"test:single": "better-npm-run test:single",
"check-coverage": "istanbul check-coverage --statements 96 --branches 94 --functions 100 --lines 95",
"report-coverage": "echo 'Reporting coverage stats' && cat ./coverage/lcov.info | codecov",
"deploy": "surge -p demo -d az-promise-show.surge.sh",
"release": "npm run build && with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags"
},
"betterScripts": {
"test": {
"env": {
"NODE_ENV": "test",
"COVERAGE": "true"
},
"command": "karma start"
},
"test:single": {
"env": {
"NODE_ENV": "test",
"COVERAGE": "true"
},
"command": "karma start --single-run"
},
"build:dist": {
"env": {
"NODE_ENV": "development"
},
"command": "webpack --config ./node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors"
},
"build:prod": {
"env": {
"NODE_ENV": "production"
},
"command": "webpack --config ./node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/az-promise-show.git"
},
"keywords": [
"angular",
"angularjs",
"promise",
"ng-show",
"ng-hide",
"az-promise-show",
"alianza"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentcdodds/az-promise-show/issues"
},
"homepage": "https://github.com/kentcdodds/az-promise-show#readme",
"kcdCommon": {
"webpack": {
"development": {
"externals": {
"angular": "angular"
}
},
"production": {
"externals": {
"angular": "angular"
}
}
}
}
}