-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "basecript",
"version": "1.1.0",
"description": "The base tool set",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "npx jest",
"tsc": "node -e \"require('del')('./build')\" & npx tsc",
"start": "node -r ./ts-node.config.js src/index.ts",
"lint": "eslint \"src/**/*.ts\" --quiet --fix",
"pretty": "npx prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hooshkar/basecript.git"
},
"keywords": [
"basecript"
],
"author": "hooshkar",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"del": "^6.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {},
"license": "MIT",
"bugs": {
"url": "https://github.com/hooshkar/basecript/issues"
},
"homepage": "https://github.com/hooshkar/basecript#readme"
}