-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "tscer",
"version": "0.0.4",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "bin/tscer",
"license": "MIT",
"author": {
"name": "sonacy",
"email": "sonacy2538@163.com",
"url": "https://github.com/sonacy"
},
"repository": {
"type": "git",
"url": "git@github.com:sonacy/tscer.git"
},
"bugs": {
"url": "https://github.com/sonacy/tscer/issues"
},
"homepage": "https://github.com/sonacy/tscer",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"test": "jest",
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.14",
"@types/node": "^12.0.2",
"@types/prettier": "^1.16.4",
"@types/progress": "^2.0.3",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"prettier": "^1.17.1",
"progress": "^2.0.3",
"typescript": "^3.5.2"
}
}