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 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
{
"name": "angular-nav-login",
"description": "Login components for NAV applications",
"main": "dist/bundle.js",
"scripts": {
"build": "rollup --config",
"postbuild": "uglifyjs dist/bundle.js --compress --mangle --output dist/bundle.min.js",
"test": "standard",
"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",
"login",
"auth"
],
"contributors": [
"Tom Vincent <[email protected]>"
],
"engines": {
"node": ">=6"
},
"license": "Apache-2.0",
"dependencies": {
"angular": ">=1.5 <1.6"
},
"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",
"publish-dist": "^1.0.8",
"rollup": "^0.26.3",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-node-resolve": "^1.5.0",
"semantic-release": "^4.3.5",
"standard": "^8.0.0",
"uglify-js": "^2.7.3",
"validate-commit-msg": "^2.8.0"
},
"standard": {
"globals": [
"angular",
"inject"
],
"env": {
"browser": true,
"jasmine": true
}
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-push": "npm test"
}
},
"files": [
"dist/bundle.js"
],
"repository": {
"type": "git",
"url": "https://github.com/fielded/angular-nav-login.git"
}
}