-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
82 lines (82 loc) · 2.15 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
73
74
75
76
77
78
79
80
81
82
{
"name": "fengari-web",
"version": "0.1.4",
"description": "Provides anything you need to run Fengari in the browser",
"repository": "https://github.com/fengari-lua/fengari-web.git",
"contributors": [
"Benoit Giannangeli <[email protected]>",
"Daurnimator <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fengari-lua/fengari-web/issues"
},
"homepage": "https://github.com/fengari-lua/fengari-web#readme",
"main": "dist/fengari-web.bundle.js",
"dependencies": {
"fengari": "^0.1.4",
"fengari-interop": "^0.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-loader": "^8.0.4",
"eslint": "^5.9.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"scripts": {
"build": "webpack -p",
"lint": "eslint webpack.config.js src/",
"prepare": "npm run build",
"prepublishOnly": "git diff-index --quiet --cached HEAD -- && npm run lint"
},
"eslintConfig": {
"env": {
"browser": true,
"worker": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"no-console": 0,
"no-unused-vars": [
2,
{
"args": "none"
}
],
"semi": [
"error",
"always"
]
},
"overrides": [
{
"files": [
"webpack.config.js"
],
"env": {
"node": true
},
"parserOptions": {
"sourceType": "script"
}
}
]
}
}