-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.02 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
{
"name": "driver-any",
"version": "0.0.5",
"description": "Highly customizable step guide",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"copy": "cp ./src/index.css ./dist",
"start": "rm -fr ./dist && tsc -p ./config/tsconfig.development.json && yarn run copy",
"dev": "nodemon --watch ./src -e ts --exec yarn start",
"build": "rm -fr ./dist && tsc -p ./config/tsconfig.production.json && yarn run copy",
"release": "npm publish",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"keywords": [
"driver",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CodeGorgeous/driver-any"
},
"bugs": {
"url": "https://github.com/CodeGorgeous/driver-any/issues"
},
"homepage": "https://github.com/CodeGorgeous/driver-any",
"author": "CodeGorgeous",
"license": "MIT",
"devDependencies": {}
}