-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.34 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
{
"name": "berserker",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"bin": {
"berserker": "./bin/index.js"
},
"scripts": {
"start": "npm run watch",
"watch": "NODE_ENV=development rollup -w -c rollup.config.js",
"dev": "NODE_ENV=development rollup -c rollup.config.js",
"build": "NODE_ENV=production rollup -c rollup.config.js",
"publish": "rm -rf dist && npm run dev && npm run build",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FateApocrypha/Berserker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FateApocrypha/Berserker/issues"
},
"homepage": "https://github.com/FateApocrypha/Berserker#readme",
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.17.0",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "^4.3.1"
}
}