-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 966 Bytes
/
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
{
"name": "lrc-kit",
"version": "1.1.1",
"description": "lrc parser, maker, runner",
"main": "lib/cjs/lrc-kit.js",
"module": "lib/esm/lrc-kit.js",
"keywords": [
"lrc",
"lyric"
],
"scripts": {
"build": "yarn run build:esm && yarn run build:cjs",
"build:esm": "tsc --module es2015 --target es5 --outDir lib/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir lib/cjs",
"clean": "rm -rf lib",
"test": "jest",
"prepare": "yarn clean && yarn build"
},
"files": [
"lib",
"src"
],
"author": "Weirong Xu <weirongxu.raidou@gmail.com>",
"homepage": "https://github.com/weirongxu/lrc-kit",
"repository": {
"type": "git",
"url": "https://github.com/weirongxu/lrc-kit.git"
},
"bugs": "https://github.com/weirongxu/lrc-kit/issues",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
}
}