-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
64
65
66
67
68
69
70
71
72
73
{
"name": "parrot",
"version": "1.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"parrot": "./bin/parrot.js"
},
"author": "ZhangRGK",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node bin/parrot | ./node_modules/.bin/bunyan",
"dev": "ts-node",
"test": "jest --forceExit --coverage --verbose",
"pretest": "yarn build",
"lint": "tslint -c tslint.json './src/**/*.ts'",
"prebuild": "rimraf ./dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost"
},
"dependencies": {
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"commander": "^2.15.1",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"express-flash-2": "^1.0.1",
"glob": "^7.1.2",
"inflected": "^2.0.4",
"moment": "^2.22.1",
"reflect-metadata": "^0.1.12",
"shelljs": "^0.8.2",
"ts-node": "^6.0.3",
"typescript": "^2.8.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/bunyan": "^1.8.4",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.11.1",
"@types/express-flash-2": "^1.0.3",
"@types/glob": "^5.0.35",
"@types/inflected": "^1.1.29",
"@types/ini": "^1.3.29",
"@types/jest": "^22.2.3",
"@types/node": "^9.6.5",
"@types/shelljs": "^0.8.0",
"@types/uuid": "^3.4.3",
"jest": "^22.4.3",
"rimraf": "^2.6.2",
"supertest": "^3.1.0",
"ts-jest": "^22.4.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0"
}
}