-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
{
"name": "bms",
"version": "51.0.0",
"description": "BMS Parser for JavaScript",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"clean": "rimraf lib tsconfig.tsbuildinfo",
"build": "tsc -b .",
"test": "gulp bmspec:update && nyc -r text -r lcov gulp test",
"dev": "tsc --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"repository": {
"type": "git",
"url": "git://github.com/bemusic/bms-js.git"
},
"keywords": [
"BMS"
],
"browser": {
"./reader/index.js": "./reader/index.web.js"
},
"author": "Thai Pangsakulyanont <org.yi.dttvb@gmail.com> (http://dt.in.th/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bemusic/bms-js/issues"
},
"homepage": "https://github.com/bemusic/bms-js",
"devDependencies": {
"@types/invariant": "^2.2.30",
"@types/lodash.assign": "^4.2.4",
"@types/lodash.map": "^4.6.13",
"@types/lodash.uniq": "^4.5.4",
"@types/lodash.values": "^4.3.4",
"@types/node": "16",
"artstep": "^5555.0.0",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-cucumber": "https://github.com/dtinth/gulp-cucumber/archive/687f16096f61729d8b11f65e266b95dcd8b8ef00.tar.gz",
"gulp-mocha": "^6.0.0",
"hide-stack-frames-from": "^1.0.0",
"lazy-property": "^1.0.0",
"nyc": "^11.9.0",
"stack-chain": "^1.3.0",
"eslint": "^8.25.0",
"typescript": "^4.8.4",
"eslint-config-bemuse": "^5.0.0"
},
"dependencies": {
"bemuse-chardet": "0.0.8",
"data-structure": "^1.2.0",
"iconv-lite": "^0.4.24",
"invariant": "^2.2.4",
"lodash.assign": "^4.2.0",
"lodash.map": "^4.6.0",
"lodash.uniq": "^4.5.0",
"lodash.values": "^4.3.0"
},
"volta": {
"extends": "../../volta.json"
}
}