forked from steveblue/angular2-rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
{
"name": "angular-rollup",
"version": "1.0.0-rc.6",
"license": "MIT",
"repository": "https://github.com/steveblue/angular2-rollup",
"contributors": [
"Stephen Belovarich",
"olegreznichenko"
],
"scripts": {
"clean": "rimraf node_modules ngfactory doc build && npm cache clean",
"clean:install": "npm run clean && npm install",
"clean:ngfactory": "rimraf ngfactory && mkdir ngfactory",
"copy:lib": "rsync -a --exclude=*.js ngfactory/ dist",
"lint": "tslint --force \"src/app/**/*.ts\"",
"e2e": "protractor protractor.config.js",
"e2e:live": "protractor protractor.config.js --elementExplorer",
"pretest": "",
"test": "karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --no-single-run --auto-watch",
"ci": "npm run e2e && npm run test",
"ci:watch": "npm run e2e && npm run test:watch",
"start": "npm run build:dev",
"build": "node build.js",
"build:dev": "rimraf build && node build.dev.js",
"build:custom": "rimraf build && node build.custom.js",
"build:lib": "rimraf dist && node build.lib.js",
"build:prod": "rimraf build && node build.prod.js",
"serve": "node server.js",
"scaffold": "node build.scaffold.js"
},
"dependencies": {
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"clim": "^1.1.1",
"colors": "^1.1.2",
"commander": "^2.10.0",
"find-up": "^2.1.0",
"glob": "^7.1.2",
"google-closure-compiler": "^20170806.0.0",
"html-minifier": "^3.5.2",
"htmlprocessor": "^0.2.4",
"js-string-escape": "^1.0.1",
"linebyline": "^1.3.0",
"livereload": "^0.6.2",
"magic-string": "^0.22.4",
"node-sass": "^4.5.3",
"opn": "^5.1.0",
"prompt": "^1.0.0",
"rimraf": "^2.6.1",
"shelljs": "^0.7.8"
},
"bin": {
"ngr": "cli.js"
}
}