-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "kanjily",
"version": "0.0.1",
"description": "Kanji game",
"main": "index.js",
"scripts": {
"start": "watchify -vd -p browserify-hmr -e src/main.js -o dist/main.js & stylus --watch --include-css src/stylus/main.styl -o dist/ & http-server -c 1",
"lint": "eslint --ext .js,.vue src"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/argelius/kanjily.git"
},
"author": "Andreas Argelius <andreas@argeli.us>",
"license": "MIT",
"bugs": {
"url": "https://github.com/argelius/kanjily/issues"
},
"homepage": "https://github.com/argelius/kanjily#readme",
"devDependencies": {
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify-hmr": "^0.3.1",
"d3": "^3.5.17",
"eslint": "^2.10.2",
"eslint-plugin-html": "^1.5.1",
"frechet": "^1.0.1",
"normalize.css": "^4.1.1",
"raf": "^3.2.0",
"simplify-js": "^1.2.1",
"stylus": "^0.54.5",
"vue": "^1.0.24",
"vue-hot-reload-api": "^1.3.2",
"vue-router": "^0.7.13",
"vue-touch": "^1.1.0",
"vueify": "^8.4.1",
"vueify-insert-css": "^1.0.0",
"watchify": "^3.7.0"
}
}