This repository has been archived by the owner on Aug 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.59 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
{
"name": "styler-src",
"version": "1.0.0-beta.15",
"license": "MIT",
"scripts": {
"build": "npm run build:clean && npm run build:ngc && npm run build:rollup:es && npm run build:rollup:umd && npm run build:release",
"build:clean": "rimraf ./dist",
"build:ngc": "ngc -p ./package/tsconfig.package.json",
"build:rollup:es": "rollup -c rollup.es.config.js",
"build:rollup:umd": "rollup -c rollup.umd.config.js",
"build:release": "node release.js",
"build-and-copy": "npm run build && node ./dev/dev-copy.js",
"publish": "npm publish ./dist/release --access=public",
"release": "npm run build && npm run publish",
"test": "karma start ./karma.conf.js --browsers Firefox --single-run",
"test:local": "karma start ./karma.conf.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^4.3.1",
"@angular/common": "^4.3.1",
"@angular/compiler": "^4.3.1",
"@angular/compiler-cli": "^4.3.1",
"@angular/core": "^4.3.1",
"@angular/platform-browser": "^4.3.1",
"@angular/platform-browser-dynamic": "^4.3.1",
"@angular/router": "^4.3.1",
"rxjs": "^5.4.2",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@types/jasmine": "^2.5.53",
"awesome-typescript-loader": "^3.2.2",
"fs-extra": "^4.0.0",
"jasmine": "^2.6.0",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.4",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"typescript": "^2.4.2",
"webpack": "^3.4.1"
}
}