This repository has been archived by the owner on Jan 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
{
"name": "angular-nav-thresholds",
"description": "Angular NAV module for calculating thresholds",
"main": "dist/bundle.js",
"scripts": {
"build": "rollup -c",
"postbuild": "uglifyjs dist/bundle.js --compress --mangle --output dist/bundle.min.js",
"pretest": "standard",
"test": "npm run -s build && karma start",
"prepublish-dist": "npm run build",
"publish-dist": "publish-dist --author-name 'Field Bot' --author-email '[email protected]'",
"semantic-release": "semantic-release pre && npm run publish-dist && npm publish && semantic-release post"
},
"keywords": [
"nav",
"navision",
"angular",
"thresholds"
],
"contributors": [
"Patricia Garcia <[email protected]>",
"Tom Vincent <[email protected]>"
],
"license": "Apache-2.0",
"engines": {
"node": ">=5"
},
"dependencies": {
"angular": "^1.5.5"
},
"devDependencies": {
"angular-mocks": "^1.5.5",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"ghooks": "^1.3.2",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"moment": "^2.17.1",
"ng-smart-id": "github:fielded/ng-smart-id#4.0.3",
"phantomjs-prebuilt": "^2.1.7",
"publish-dist": "^1.0.8",
"rollup": "^0.26.3",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-node-resolve": "^1.5.0",
"semantic-release": "^4.3.5",
"standard": "^7.1.1",
"uglify-js": "^2.7.3",
"validate-commit-msg": "^2.8.0"
},
"standard": {
"globals": [
"angular",
"inject"
],
"env": {
"browser": true,
"jasmine": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/fielded/angular-nav-thresholds.git"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-push": "npm test"
}
},
"files": [
"dist/*"
]
}