-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "instead-js",
"version": "2.5.0",
"description": "INSTEAD in Javascript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --inline --hot --content-base build/",
"prepare": "node ./scripts/prepare_stead.js && node ./scripts/prepare_lua_vm.js",
"prebuild": "node ./scripts/build_stead.js",
"build": "webpack -p --config webpack.config.js",
"postbuild": "cd ./build && node list_games.js",
"lint": "./node_modules/.bin/eslint ./src/ --ext .js",
"dist": "bash ./scripts/make_dist.sh"
},
"author": "Serhii Mozhaiskyi ([email protected])",
"license": "MIT",
"devDependencies": {
"babel-eslint": "7.2.3",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.0",
"eslint": "3.19.0",
"eslint-config-airbnb-es5": "1.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"html-webpack-plugin": "2.28.0",
"path": "0.12.7",
"raw-loader": "0.5.1",
"script-loader": "0.7.0",
"style-loader": "0.16.1",
"webpack": "2.4.1",
"webpack-dev-server": "2.4.3"
},
"dependencies": {
"jquery": "3.2.1",
"jszip": "3.1.3",
"perfect-scrollbar": "0.6.16",
"text-encoding": "0.6.4"
}
}