-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "muse-json-generator",
"version": "2.0.6",
"description": "JSON generator for MUSE",
"main": "lib/generator.js",
"bin": {
"muse": "bin/muse.js",
"muse-json-generator": "bin/muse.js"
},
"typings": "lib/generator.d.ts",
"scripts": {
"start": "npm run watch",
"build": "npm run trash && tsc -p ./",
"pretest": "npm run build",
"test": "istanbul cover _mocha test/**/*.ts -- --compilers ts:ts-node/register --timeout 30000 -R spec",
"coverage": "cat ./coverage/lcov.info | coveralls",
"trash": "trash lib",
"watch": "tsc -watch -p ./",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moefront/muse-json-generator.git"
},
"keywords": [
"muse",
"ymplayer"
],
"author": "MoeFront Studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/moefront/muse-json-generator/issues"
},
"homepage": "https://github.com/moefront/muse-json-generator#readme",
"dependencies": {
"chalk": "^2.2.0",
"commander": "^2.11.0",
"honoka": "^0.4.4",
"lodash": "^4.17.15",
"ora": "^1.3.0",
"pjson": "^1.0.9",
"pretty-error": "^2.1.1",
"semver": "^5.4.1"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/commander": "^2.11.0",
"@types/lodash": "^4.14.78",
"@types/mocha": "^2.2.43",
"@types/nock": "^8.2.1",
"@types/node": "^8.0.44",
"@types/ora": "^1.3.1",
"@types/semver": "^5.4.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^9.0.22",
"trash-cli": "^1.4.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
},
"files": [
"lib",
"bin"
]
}