-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "@unipackage/utils",
"version": "1.7.0",
"description": "utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist;npx tsc",
"build:test": "rm -rf ./dist-test;tsc -p tsconfig.test.json;",
"test": "npm run build:test; mocha ",
"readme": "npx readme-md-generator -p ./templates/readme.md",
"commit": "git-cz",
"release": "npm run build; git branch --show-current | grep -q '^main$' && release-it",
"contrib:init": "all-contributors init",
"contrib:add": "all-contributors add",
"contrib:check": "all-contributors check",
"contrib:gen": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unipackage/utils.git"
},
"keywords": [
"utils",
"ts",
"js"
],
"author": "waynewyang",
"license": "MIT and APACHE",
"bugs": {
"url": "https://github.com/unipackage/utils/issues"
},
"homepage": "https://github.com/unipackage/utils#readme",
"dependencies": {
"@types/lodash": "^4.14.199",
"num-format": "^0.1.1",
"pretty-bytes": "5.6.0"
},
"devDependencies": {
"@babel/runtime": "^7.23.4",
"@release-it/conventional-changelog": "^8.0.1",
"@types/chai": "^4.3.11",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^10.0.6",
"@types/node": "20.6.2",
"all-contributors-cli": "^6.26.1",
"chai": "^4.3.10",
"git-cz": "^4.9.0",
"mocha": "^10.2.0",
"readme-md-generator": "^1.0.0",
"release-it": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}