-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 KB
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
{
"name": "junglejs",
"version": "0.1.0",
"description": "简易的 JavaScript 解释器",
"main": "index.js",
"scripts": {
"compile": "babel src --out-dir .compiled --source-maps --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fzred/junglejs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fzred/junglejs/issues"
},
"homepage": "https://github.com/fzred/junglejs#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.13.5"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
],
"retainLines": true
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false
}
}