forked from ionic-team/ionic-app-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "@ionic/app-scripts",
"version": "0.0.36",
"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",
"build-and-test": "npm run build && npm run test",
"clean": "rm -rf ./dist",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json",
"prepublish": "jasmine JASMINE_CONFIG_PATH=src/spec/jasmine.config.json && npm run build",
"test": "jasmine JASMINE_CONFIG_PATH=src/spec/jasmine.config.json || true",
"watch": "npm run clean && tsc --watch"
},
"main": "dist/index.js",
"dependencies": {
"autoprefixer": "6.4.1",
"chalk": "1.1.3",
"chokidar": "1.6.0",
"clean-css": "3.4.19",
"cross-spawn": "4.0.0",
"fs-extra": "0.30.0",
"node-sass": "3.9.3",
"postcss": "5.2.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",
"tslint": "3.15.1",
"tslint-eslint-rules": "1.5.0",
"typescript": "^2.0.3",
"uglify-js": "2.7.3"
},
"devDependencies": {
"@types/chalk": "0.4.30",
"@types/chokidar": "^1.4.29",
"@types/clean-css": "3.4.29",
"@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",
"jasmine": "2.5.2",
"mock-fs": "^3.11.0",
"tslint": "3.15.1",
"tslint-ionic-rules": "0.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/driftyco/ionic-app-scripts.git"
},
"bugs": {
"url": "https://github.com/driftyco/ionic-app-scripts/issues"
}
}