forked from paulsutherland/Polyonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "polyonic",
"productName": "A Polyonic App",
"description": "A Polyonic Electron Ionic 2 starter application",
"version": "1.0.0",
"author": "Author",
"copyright": "© 2016, Author",
"main": "src/app.js",
"repository": {
"type": "git",
"url": "https://github.com/paulsutherland/Polyonic"
},
"license": "MIT",
"devDependencies": {
"asar": "0.13.0",
"body-parser": "1.17.1",
"chai": "^3.5.0",
"cookie-parser": "1.4.3",
"del": "2.2.2",
"electron": "1.6.2",
"electron-connect": "0.6.1",
"electron-mocha": "3.4.0",
"express": "4.15.2",
"fs-jetpack": "0.13.3",
"gulp": "3.9.1",
"gulp-batch": "1.0.5",
"gulp-env": "0.4.0",
"gulp-plumber": "1.1.0",
"gulp-util": "3.0.8",
"gulp-watch": "4.3.11",
"morgan": "1.8.1",
"q": "1.5.0",
"rollup": "^0.41.6",
"run-sequence": "^1.2.2",
"snazzy": "*",
"standard": "*",
"tslint": "*",
"tslint-stylish": "*",
"typescript": "2.2.2",
"yargs": "7.1.0"
},
"optionalDependencies": {
"appdmg": "0.4.5",
"rcedit": "0.8.0"
},
"scripts": {
"build": "gulp build",
"install-native": "node ./tasks/install_native_module",
"lint": "standard './*.js' 'tasks/**/*.js' 'src/*.js' --verbose | snazzy && cd src; tslint 'app/**/*.ts' -t stylish || true",
"dev": "cd src && gulp dev",
"postinstall": "cd src && npm install",
"pretest": "npm run lint && gulp build --env=test",
"release": "npm run lint && gulp release --env=production",
"prestart": "cd src && ionic build",
"start": "gulp start",
"test": "electron-mocha build",
"ionic:build": "ionic-app-scripts build"
}
}