-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"name": "@rolodromo/rpgen",
"version": "1.2.2",
"description": "Another RPG random generator engine",
"author": "guumaster <[email protected]>",
"main": "lib/rpgen.node.js",
"unpkg": "lib/rpgen.web.js",
"browser": "lib/rpgen.web.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rolodromo/rpgen"
},
"files": [
"src/",
"lib/rpgen.min.js"
],
"scripts": {
"dev": "webpack-serve --config ./webpack.config.development.js",
"start": "cp lib/* examples && http-server examples",
"build": "webpack --hide-modules --config webpack.config.production.js",
"lint": "eslint src",
"prepublish": "npm run build"
},
"license": "GPL",
"dependencies": {
"@babel/runtime": "7.0.0-beta.51",
"axios": "0.18.0",
"lodash": "4.17.10"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.51",
"@babel/core": "7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.51",
"@babel/plugin-transform-runtime": "7.0.0-beta.51",
"@babel/preset-env": "7.0.0-beta.51",
"babel-eslint": "8.2.3",
"babel-loader": "8.0.0-beta.3",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-lodash": "3.3.4",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"http-server": "0.11.1",
"lodash-webpack-plugin": "0.11.5",
"webpack": "4.12.0",
"webpack-bundle-analyzer": "2.13.1",
"webpack-cli": "3.0.8",
"webpack-merge": "4.1.3",
"webpack-serve": "1.0.4"
}
}