-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1003 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1003 Bytes
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
{
"name": "detochko-ts-utils",
"version": "1.1.0",
"description": "TypeScript common code library",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "npm run lint && npm test && npm run build",
"clear": "rimraf ./lib",
"build": "npm run clear && tsc",
"lint": "tslint -c tslint.json ./src/**/*.ts ./tests/**/*.ts",
"test": "ts-node --no-cache ./node_modules/tape/bin/tape ./tests/**/*.test.ts | tap-dot"
},
"author": "RayMan <detochko@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/detochko/ts-utils.git"
},
"dependencies": {
"lodash": "4.17.4",
"object-is": "1.0.1"
},
"devDependencies": {
"@types/lodash": "4.14.86",
"@types/tape": "4.2.31",
"detochko-my-own-tslint": "1.0.2",
"rimraf": "2.6.2",
"tap-dot": "1.0.5",
"tape": "4.8.0",
"ts-node": "3.3.0",
"tslib": "1.8.0",
"tslint": "5.8.0",
"typescript": "2.6.2"
}
}