forked from ionic-team/ionic-app-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.94 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
{
"name": "@ionic/app-scripts",
"version": "0.0.45",
"description": "Scripts for Ionic Projects",
"homepage": "http://ionicframework.com/",
"author": "Ionic Team <[email protected]> (http://ionic.io)",
"license": "MIT",
"files": [
"bin/",
"config/",
"dist/",
"LICENSE",
"README.md"
],
"bin": {
"ionic-app-scripts": "./bin/ionic-app-scripts.js"
},
"scripts": {
"build": "npm run clean && tsc && npm run sass",
"build-and-test": "npm run build && npm run test",
"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",
"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": "jasmine JASMINE_CONFIG_PATH=src/spec/jasmine.config.json || true",
"watch": "npm run clean && tsc --watch & npm run sass-watch"
},
"main": "dist/index.js",
"dependencies": {
"autoprefixer": "6.4.1",
"chalk": "1.1.3",
"chokidar": "1.6.1",
"clean-css": "3.4.19",
"cross-spawn": "4.0.0",
"express": "4.14.0",
"fs-extra": "0.30.0",
"json-loader": "0.5.4",
"node-sass": "3.10.1",
"os-name": "2.0.1",
"postcss": "5.2.0",
"proxy-middleware": "0.15.0",
"rollup": "0.36.3",
"rollup-plugin-commonjs": "5.0.4",
"rollup-plugin-json": "2.0.2",
"rollup-plugin-node-builtins": "2.0.0",
"rollup-plugin-node-globals": "1.0.9",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-pluginutils": "1.5.2",
"tiny-lr": "1.0.3",
"tslint": "3.15.1",
"tslint-eslint-rules": "1.5.0",
"typescript": "^2.0.3",
"uglify-js": "2.7.3",
"webpack": "^2.1.0-beta.25",
"ws": "1.1.1"
},
"devDependencies": {
"@types/chalk": "^0.4.30",
"@types/chokidar": "^1.4.29",
"@types/clean-css": "^3.4.29",
"@types/express": "^4.0.33",
"@types/fs-extra": "^0.0.33",
"@types/jasmine": "^2.2.33",
"@types/mock-fs": "^3.6.29",
"@types/node": "^6.0.38",
"@types/node-sass": "^0.0.29",
"@types/uglify-js": "^2.0.27",
"@types/webpack": "^1.12.35",
"@types/ws": "^0.0.34",
"conventional-changelog-cli": "1.2.0",
"github": "0.2.4",
"ionic-cz-conventional-changelog": "1.0.0",
"jasmine": "2.5.2",
"mock-fs": "3.11.0",
"node-sass": "3.10.1",
"rimraf": "2.5.4",
"tslint-ionic-rules": "0.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/driftyco/ionic-app-scripts.git"
},
"bugs": {
"url": "https://github.com/driftyco/ionic-app-scripts/issues"
},
"config": {
"commitizen": {
"path": "node_modules/ionic-cz-conventional-changelog"
}
}
}