-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.28 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.28 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "enum-maker",
"version": "0.0.5",
"description": "create antd table columns and form items from db",
"main": "dist/index.js",
"module": "esm/index.js",
"repository": "https://github.com/diveDylan/enum-maker",
"license": "MIT",
"keywords": [
"enum",
"enum-maker",
"template",
"perimission",
"dictionary"
],
"scripts": {
"build": "rollup --config --environment NODE_ENV:development",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "jest",
"test:bin": "jest ./tests/index.spec.ts",
"publish": "npm publish",
"cover": "jest --coverage",
"codecov": "codecov --token=2f4ffa4c-aa4a-4972-9417-209aaff7d947",
"version": "standard-version",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"chalk": "^4.1.1",
"execa": "^5.0.0",
"fs-extra": "^10.0.0",
"jest": "^26.6.3",
"ora": "^5.4.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"codecov": "^3.5.0",
"cspell": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"gh-pages": "^3.1.0",
"handlebars": "^4.7.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^6.0.1",
"prettier": "^2.1.1",
"rollup": "^2.49.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.0.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"files": [
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}