-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.56 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
{
"name": "game-data-explorer",
"version": "0.0.17",
"description": "Explore video game engines assets using Atom",
"main": "./lib/game-data-explorer",
"dependencies": {
"babylonjs": "^3.1.0-alpha2",
"binary-parser": "^1.3.0",
"bluebird": "^3.5.0",
"etch": "^0.12.6",
"fs-plus": "^3.0.1",
"loophole": "^1.1.0",
"lzo": "^0.4.0",
"serializable": "^1.0.3",
"temp": "^0.8.3"
},
"devDependencies": {
"jison": "^0.4.18",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.6.1",
"prettier": "^1.6.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-promise": "^3.5.0"
},
"repository": "https://github.com/berenm/game-data-explorer",
"license": "UNLICENSE",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"deserializers": {
"GameDataExplorer": "deserialize"
},
"babel": {
"presets": [
"env"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:promise/recommended"
],
"plugins": [
"prettier",
"react",
"promise"
],
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": true
}
},
"rules": {
"no-console": 0,
"react/react-in-jsx-scope": 0,
"react/no-string-refs": 0,
"promise/avoid-new": 0,
"no-constant-condition": [
"error",
{
"checkLoops": false
}
]
}
}
}