forked from ionic-team/ionic-app-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 3.77 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@ionic/app-scripts",
"version": "2.1.3",
"description": "Scripts for Ionic Projects",
"homepage": "https://ionicframework.com/",
"author": "Ionic Team <[email protected]> (https://ionic.io)",
"license": "MIT",
"files": [
"bin/",
"config/",
"dist/",
"lab",
"LICENSE",
"README.md"
],
"bin": {
"ionic-app-scripts": "./bin/ionic-app-scripts.js"
},
"scripts": {
"build": "npm run clean && tsc",
"build-and-test": "jest",
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "rimraf ./dist",
"github-release": "node ./scripts/create-github-release.js",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json --type-check -t stylish",
"nightly": "npm run build && node ./scripts/publish-nightly.js",
"sass": "node-sass ./src/dev-client/sass/ion-dev.scss --output ./bin/ --output-style compressed",
"sass-watch": "npm run sass && node-sass ./src/dev-client/sass/ion-dev.scss --watch --output ./bin/ --output-style compressed",
"test": "jest",
"watch": "npm run clean && tsc --watch & npm run sass-watch"
},
"main": "dist/index.js",
"dependencies": {
"autoprefixer": "7.1.1",
"babili": "0.1.2",
"chalk": "1.1.3",
"chokidar": "1.7.0",
"clean-css": "3.4.27",
"cross-spawn": "5.1.0",
"express": "4.15.3",
"fs-extra": "3.0.1",
"glob": "7.1.1",
"json-loader": "0.5.4",
"magic-string": "0.19.1",
"node-sass": "4.5.3",
"os-name": "2.0.1",
"postcss": "5.2.17",
"proxy-middleware": "0.15.0",
"reflect-metadata": "^0.1.10",
"rollup": "0.42.0",
"rollup-plugin-commonjs": "8.0.2",
"rollup-plugin-json": "2.3.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.1.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-pluginutils": "2.0.1",
"tiny-lr": "1.0.4",
"tslint": "^5.5.0",
"tslint-eslint-rules": "4.1.1",
"uglify-js": "^3.0.23",
"webpack": "^3.4.1",
"ws": "1.1.1",
"xml2js": "0.4.17"
},
"devDependencies": {
"@angular/animations": "4.1.3",
"@angular/common": "4.1.3",
"@angular/compiler": "4.1.3",
"@angular/compiler-cli": "4.1.3",
"@angular/core": "4.1.3",
"@angular/forms": "4.1.3",
"@angular/http": "4.1.3",
"@angular/platform-browser": "4.1.3",
"@angular/platform-browser-dynamic": "4.1.3",
"@angular/platform-server": "4.1.3",
"@angular/tsc-wrapped": "4.1.3",
"@types/chalk": "^0.4.30",
"@types/chokidar": "1.4.29",
"@types/clean-css": "^3.4.29",
"@types/express": "^4.0.33",
"@types/fs-extra": "^3.0.3",
"@types/glob": "^5.0.30",
"@types/jest": "^16.0.1",
"@types/mock-fs": "^3.6.30",
"@types/node": "^7.0.4",
"@types/node-sass": "^3.10.32",
"@types/rewire": "^2.5.27",
"@types/uglify-js": "^2.6.28",
"@types/ws": "^0.0.38",
"conventional-changelog-cli": "^1.3.1",
"github": "0.2.4",
"ionic-cz-conventional-changelog": "1.0.0",
"jest": "^18.0.0",
"mock-fs": "4.3.0",
"rewire": "^2.5.2",
"rimraf": "^2.6.1",
"rxjs": "^5.1.1",
"sw-toolbox": "3.6.0",
"tslint-ionic-rules": "0.0.8",
"typescript": "~2.3.4",
"zone.js": "^0.8.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/ionic-app-scripts.git"
},
"bugs": {
"url": "https://github.com/ionic-team/ionic-app-scripts/issues"
},
"config": {
"commitizen": {
"path": "node_modules/ionic-cz-conventional-changelog"
}
},
"typings": "dist/index.d.ts",
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "<rootDir>/preprocessor.js"
},
"testRegex": "/src/.*\\.spec\\.(ts|js)$",
"coverageDirectory": "coverage"
}
}