-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "lrc",
"version": "1.0.0",
"description": "lrc file parser",
"main": "./dist/Lrc.cjs.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"build": "node build --all",
"build:cjs": "node build --type=cjs",
"build:umd": "node build --type=umd",
"build:esm": "node build --type=esm"
},
"repository": {
"type": "git",
"url": "github.com/kamilic/lrc"
},
"author": "kamilic",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "^3.5.3",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify-es": "0.0.1",
"yargs": "^10.0.3"
}
}