forked from avgjs/storyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "avg-storyscript",
"version": "0.2.1",
"description": "Build-in Story Script System for AVG.js.",
"main": "dist/index.js",
"source": "index.js",
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.js --progress --hide-modules",
"build:dev": "rimraf dist && cross-env NODE_ENV=development webpack --config webpack.config.js --progress --hide-modules",
"test": "jest"
},
"keywords": [
"AVG",
"Game",
"AVG.js",
"script"
],
"author": "Icemic Jia <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/avgjs/storyscript.git"
},
"license": "Apache-2.0",
"dependencies": {
"ohm-js": "^0.14.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.18",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.11.1",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
}
}