-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 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
{
"name": "wasd-flappy",
"version": "0.1.1",
"description": "🐦 Create your own flappy.",
"main": "dist/flappy.common.js",
"module": "dist/flappy.esm.js",
"unpkg": "dist/flappy.js",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "rollup -cw",
"lint": "eslint src examples/vue --fix",
"test": "npm run lint && jest",
"build": "rollup -c && uglifyjs dist/flappy.js > dist/flappy.min.js --comments /^!/",
"dev:vue": "vbuild -c examples/vue/config.js -d",
"build:vue": "vbuild -c examples/vue/config.js",
"deploy": "npm run build:vue && gh-pages -d examples/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wasd-org/wasd-flappy.git"
},
"author": "qingwei-li <[email protected]> (https://github.com/QingWei-Li)",
"homepage": "https://wasd-org.github.io/wasd-flappy/",
"license": "MIT",
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"eslint-plugin-vue": "^2.0.1",
"gh-pages": "^0.12.0",
"image-promise": "^5.0.0",
"jest": "^19.0.2",
"rollup": "^0.41.5",
"rollup-plugin-buble": "^0.15.0",
"rollup-watch": "^3.2.2",
"uglify-js": "^2.8.14",
"vbuild": "^6.24.2"
}
}