This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.app.json
74 lines (74 loc) · 1.53 KB
/
package.app.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
{
"name": "your-app-name",
"version": "0.0.1",
"description": "Your app description app",
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel-preset-latest": "^6.16.0",
"micro": "^6.1.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chalk": "^1.1.3",
"eslint-config-samtgarson": "^0.0.2",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"ora": "^1.1.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"source-map-support": "^0.4.9",
"test-listen": "^1.0.0",
"webpack": "2",
"xo": "^0.17.1"
},
"scripts": {
"start": "node .",
"dev": "node build --watch",
"build": "node build",
"test": "jest && xo",
"test:spec": "jest",
"test:lint": "xo"
},
"xo": {
"ignores": [
"index.js"
],
"extends": "samtgarson",
"rules": {
"no-console": 0
},
"overrides": [
{
"files": "build/*.js",
"rules": {
"import/no-extraneous-dependencies": 0,
"unicorn/no-process-exit": 0
}
}
]
},
"babel": {
"presets": [
"latest",
"stage-2"
]
},
"jest": {
"moduleFileExtensions": ["js"],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"setupFiles": [
"<rootDir>/test/setup.js"
],
"testMatch": [
"<rootDir>/test/**/*.test.js"
]
}
}