This repository was archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"name": "slim-pig",
"version": "1.3.8",
"description": "苗条猪",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"watch": "rm -rf ./dist && tsc -w",
"test": "npm run test:lint && npm run test:all",
"test:lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test:all": "mocha --recursive -require ts-node/register 'test/**/*.test.ts'",
"test:one": "mocha -require ts-node/register 'test/pattern.test.ts'"
},
"author": "高国文(funte@outlook.com)",
"homepage": "https://github.com/funte/slim-pig",
"repository": "https://github.com/funte/slim-pig",
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^9.0.7",
"fs-extra": "^9.1.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/glob-parent": "^5.1.1",
"@types/minimatch": "^3.0.5",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chai": "^4.3.0",
"commitizen": "^4.2.4",
"eslint": "^7.20.0",
"mocha": "^8.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}