-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "mmd-parser",
"version": "1.0.4",
"description": "MMD parser",
"main": "build/mmdparser.js",
"jsnext:main": "build/mmdparser.module.js",
"scripts": {
"all": "npm run build && npm run build-uglify && npm run test",
"build": "rollup -c",
"build-uglify": "rollup -c && uglifyjs build/mmdparser.js -cm --preamble \"// https://github.com/takahirox/mmd-parser#readme\" > build/mmdparser.min.js",
"dev": "rollup -c -w",
"test": "node test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takahirox/mmd-parser.git"
},
"author": "Takahiro <hogehoge@gachapin.jp> (https://github.com/takahirox)",
"license": "MIT",
"bugs": {
"url": "https://github.com/takahirox/mmd-parser/issues"
},
"homepage": "https://github.com/takahirox/mmd-parser#readme",
"devDependencies": {
"charset-encoder-js": "^1.0.1",
"rollup": "^0.36.3",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-commonjs": "^5.0.5",
"uglify-js": "^2.7.4",
"xhr2": "^0.1.3"
}
}