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
64 lines (64 loc) · 1.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
{
"name": "angular-nav-user-profile-widget",
"description": "Login components for NAV applications",
"main": "dist/bundle.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "rollup -c",
"postbuild": "cat src/*.scss > dist/bundle.scss",
"prepublish-dist": "npm run build",
"publish-dist": "publish-dist --author-name 'Field Bot' --author-email '[email protected]'",
"test": "standard",
"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": ">=5 <6"
},
"license": "Apache-2.0",
"dependencies": {
"angular": "^1.5.5"
},
"devDependencies": {
"angular-mocks": "^1.5.5",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"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-node-resolve": "^1.5.0",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-uglify": "^1.0.0",
"semantic-release": "^4.3.5",
"standard": "^7.1.1"
},
"standard": {
"globals": [
"angular",
"inject"
],
"env": {
"browser": true,
"jasmine": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/fielded/angular-nav-user-profile-widget.git"
}
}