This repository has been archived by the owner on May 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "@omni-door/tpl-component-library-react",
"version": "0.2.16",
"description": "The React component-library-react project template",
"bin": {
"omni-component-library-react": "./bin/omni-door-component-library-react.js"
},
"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",
"build:rm": "rm -rf lib/*",
"build:tsc": "tsc --build",
"build:branch": "./.build/branch.sh",
"build:version": "./.build/version.sh",
"release": "npm run build:branch master && npm run build && npm run build:version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omni-door/tpl-component-library-react.git"
},
"keywords": [
"template",
"component-library-react",
"omni",
"omni-door"
],
"author": "bobby.li",
"license": "MIT",
"bugs": {
"url": "https://github.com/omni-door/tpl-component-library-react/issues"
},
"homepage": "https://github.com/omni-door/tpl-component-library-react#readme",
"dependencies": {
"@omni-door/utils": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}