-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "jlua",
"version": "0.0.6",
"description": "Yet another Lua implementation in pure JavaScript.",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:js && npm run bundle",
"build:js": "babel src --out-dir lib --extensions \".js,.jsx\" --source-maps inline",
"bundle": "webpack",
"test": "jest --config jest.config.json",
"codeformat": "prettier --config .prettierrc --write \"./src/**/*.js\"",
"clean": "rimraf lib dist"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/webpack": "^4.4.31",
"babel-loader": "^8.0.5",
"jest": "^24.7.1",
"js-yaml": "^3.13.1",
"memory-fs": "^0.4.1",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"@babel/generator": "^7.4.4",
"@babel/template": "^7.4.4",
"@babel/types": "^7.4.4",
"long": "^4.0.0",
"source-map": "^0.7.3"
},
"files": [
"src/",
"lib/",
"dist/"
]
}