-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "@upgreat-readable/schema",
"version": "1.1.0",
"description": "readable validate schema package",
"author": "",
"scripts": {
"pretty": "prettier --write .",
"commit": "git-cz",
"lint:code": "eslint \"./src/*.{ts,tsx}\"",
"release": "standard-version",
"test": "mocha 'build/tests/**/*.js'",
"posttest": "npm run format",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\""
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@tsconfig/node14": "^1.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"fast-clone": "^1.5.13",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.2.0-dev.20201115"
},
"dependencies": {
"@types/node": "^14.11.5",
"axios": "^0.20.0",
"joi": "^17.2.1",
"jszip": "^3.5.0"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"main": "./build/index.js",
"types": "./build/index.d.ts"
}