-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "lrc.js",
"version": "1.0.1",
"description": "A lightly module for LRC format string parsing and serialization",
"main": "dist/lrc.common.js",
"module": "dist/lrc.esm.js",
"scripts": {
"build": "node ./tools/build.js",
"lint": "standard --fix ./src/index.js",
"test": "cross-env NODE_ENV=test nyc mocha",
"demo": "node ./example/index.js",
"coverage": "nyc report | coveralls"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"html",
"text-lcov",
"text",
"text-summary"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/pandaGao/lrc.js.git"
},
"keywords": [
"lrc",
"lyrics"
],
"author": "pandaGao <me@pandagao.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pandaGao/lrc.js/issues"
},
"homepage": "https://github.com/pandaGao/lrc.js#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"coveralls": "^3.0.1",
"cross-env": "^5.1.4",
"del": "^3.0.0",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"rollup": "^0.55.5",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify": "^3.0.0",
"standard": "^10.0.3"
}
}