-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "@sompylasar/ts-build-tools",
"version": "1.0.0",
"description": "A command-line toolkit to manage a Node.js package written in TypeScript.",
"keywords": ["packages", "typescript"],
"author": "Ivan Babak <[email protected]>",
"license": "MIT",
"repository": "github:sompylasar/ts-build-tools",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"bin",
"scaffolding",
"src"
],
"bin": {
"ts-build-tools": "./bin/cli.js"
},
"engines": {
"node": "^8.15.0"
},
"dependencies": {
"@types/chai": "4.0.4",
"@types/debug": "0.0.30",
"@types/mocha": "2.2.43",
"@types/node": "8.0.46",
"@types/sinon": "2.3.6",
"chai": "4.1.2",
"chalk": "2.3.0",
"cross-env": "5.1.0",
"custom-tslint-formatters": "2.1.1",
"debug": "3.1.0",
"fs-extra": "4.0.2",
"mocha": "4.0.1",
"npm-run-all": "4.1.1",
"npm-which": "3.0.1",
"nyc": "11.2.1",
"rimraf": "2.6.2",
"sinon": "4.0.1",
"ts-node": "3.3.0",
"tslint": "5.8.0",
"typescript": "2.5.3"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"jest-date-mock": "^1.0.6",
"prettier": "^1.15.3"
},
"jest": {
"setupFiles": [
"jest-date-mock"
]
},
"scripts": {
"lint": "eslint ./src",
"test": "jest"
}
}