forked from grbsk/ng2-idle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.24 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
{
"name": "ng-idle-src",
"version": "2.0.0-beta.15",
"private": true,
"description": "A module for responding to idle users in Angular 4+ applications.",
"scripts": {
"clean": "npm cache clean && rimraf node_modules && rimraf coverage && rimraf dist && rimraf .tmp",
"clean:dist": "rimraf dist && rimraf .tmp",
"lint": "tslint -c tslint.json 'modules/**/*.ts'",
"ngc:es5": "node_modules/.bin/ngc -p modules/tsconfig.es5.json",
"postngc:es5": "cp -R .tmp/es5 dist && rimraf modules/**/*.ngfactory.ts",
"ngc:es6": "node_modules/.bin/ngc -p modules/tsconfig.es6.json",
"postngc:es6": "cp -R .tmp/esm dist/esm && rimraf modules/**/*.ngfactory.ts",
"bundle:umd": "find ./modules -name 'rollup*.config.js' -exec ./node_modules/.bin/rollup -c {} \\;",
"bundle:umd:min": "npm run bundle:umd --mode=ugly",
"bundle": "npm run bundle:umd && npm run bundle:umd:min",
"prebuild": "npm run clean:dist",
"build": "npm run lint && npm run ngc:es5 && npm run bundle",
"postbuild": "npm run copyassets && npm run packagejson",
"copyassets": "for d in ./dist/*; do cp LICENSE README.md CHANGELOG.md $d; done",
"packagejson": "node ./scripts/write-package-json.js",
"changelog": "node_modules/.bin/conventional-changelog -i ./CHANGELOG.md -s -p angular",
"test": "node_modules/.bin/karma start",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackedByChinese/ng2-idle.git"
},
"author": "Mike Grabski <[email protected]> (http://mikegrabski.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HackedByChinese/ng2-idle.git/issues"
},
"homepage": "https://github.com/HackedByChinese/ng2-idle.git#readme",
"devDependencies": {
"@angular/compiler": "^4.0.0 || ^5.0.0",
"@angular/compiler-cli": "^4.0.0 || ^5.0.0",
"@angular/platform-browser": "^4.0.0 || ^5.0.0",
"@angular/platform-browser-dynamic": "^4.0.0 || ^5.0.0",
"@types/jasmine": "^2.5.37",
"@types/node": "^6.0.46",
"@types/source-map": "^0.1.29",
"@types/webpack": "^1.12.35",
"awesome-typescript-loader": "^3.0.3",
"conventional-changelog-cli": "^1.2.0",
"core-js": "^2.5.1",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^1.1.6",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.0",
"karma-remap-coverage": "^0.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"rimraf": "^2.5.4",
"rollup": "^0.36.3",
"rollup-plugin-uglify": "^1.0.1",
"rxjs": "^5.5.2",
"source-map-loader": "^0.1.5",
"ts-helpers": "^1.1.2",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.2",
"typescript": "~2.4.2",
"webpack": "2.1.0-beta.25",
"zone.js": "0.8.18"
},
"dependencies": {
"@angular/common": "^4.0.0 || ^5.0.0",
"@angular/core": "^4.0.0 || ^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}