-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
56
57
58
59
60
61
62
63
{
"name": "@omni-door/utils",
"version": "1.3.2",
"description": "The utils of omni-door's projects",
"main": "lib/index.js",
"scripts": {
"test": "nyc mocha --opts mocha.opts",
"lint": "eslint src/ --ext .ts --ext .tsx",
"lint:fix": "eslint src/ --ext .ts --ext .tsx --fix",
"build": "npm run build:rm && npm run build:tsc && npm run build:copy",
"build:rm": "rm -rf lib/*",
"build:tsc": "tsc --build",
"build:branch": "./scripts/branch.sh",
"build:version": "./scripts/version.sh",
"build:copy": "./scripts/copy.sh",
"release": "npm test && npm run build:branch master && npm run build && npm run build:version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omni-door/utils.git"
},
"keywords": [
"omni",
"omni-door",
"template",
"utils"
],
"author": "bobby.li",
"license": "MIT",
"bugs": {
"url": "https://github.com/omni-door/utils/issues"
},
"homepage": "https://github.com/omni-door/utils#readme",
"dependencies": {
"@types/signale": "1.4.0",
"chalk": "3.0.0",
"fs-extra": "8.1.0",
"ora": "4.0.3",
"semver": "7.3.4",
"shelljs": "0.8.5",
"signale": "1.4.0",
"update-notifier": "5.1.0",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@types/semver": "^7.3.4",
"@types/shelljs": "^0.8.6",
"@types/update-notifier": "~5.0.0",
"@types/validate-npm-package-name": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typescript": "3.9.7"
}
}