forked from MicrosoftEdge/generator-appx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1016 Bytes
/
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
{
"name": "generator-appx",
"version": "0.2.2",
"description": "Windows 10 App Build System",
"files": [
"app"
],
"scripts": {
"test": "mocha",
"start": "./node_modules/.bin/babel ./src --out-dir ./app && node ./app/index.js",
"build": "./node_modules/.bin/babel ./src --out-dir ./app",
"watch": "./node_modules/.bin/babel ./src --out-dir ./app --watch --source-maps",
"lint": "./node_modules/.bin/eslint ./src",
"debug": "./node_modules/.bin/babel ./src --out-dir ./app && node-debug ./app/index.js"
},
"keywords": [
"yeoman-generator"
],
"repository": {
"type": "git",
"url": "git://github.com/MicrosoftEdge/generator-appx.git"
},
"dependencies": {
"appx-starter": "git://github.com/MicrosoftEdge/appx-starter",
"yeoman-generator": "^0.20.1"
},
"devDependencies": {
"del": "^1.2.0",
"mocha": "*",
"babel-cli": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^1.0.0"
}
}