-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "chunkai",
"version": "1.0.1",
"description": "A library for downloading large files on KaiOS",
"repository": {
"type": "git",
"url": "https://github.com/garredow/chunkai.git"
},
"author": "Garrett Downs",
"license": "MIT",
"bugs": {
"url": "https://github.com/garredow/chunkai/issues"
},
"homepage": "https://github.com/garredow/chunkai#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run clean && npm run build",
"commit": "cz",
"clean": "rimraf ./lib"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}