-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "dockerode-utils",
"version": "0.0.7",
"description": "Dockerode utilities",
"main": "dist/Index.js",
"author": {
"name": "Daniel Derevjanik",
"email": "daniel.derevjanik@gmail.com"
},
"keywords": [
"dockerode",
"typescript"
],
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "tsc --watch",
"lint": "tslint -c tslint.json --fix 'lib/**/*.ts'"
},
"typescript": {
"definition": "dist/Index.d.ts"
},
"types": "dist/Index.d.ts",
"typings": "dist/Index.d.ts",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverage": false,
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dderevjanik/dockerode-utils.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/dderevjanik/dockerode-utils/issues"
},
"homepage": "https://github.com/dderevjanik/dockerode-utils#readme",
"dependencies": {
"@types/node": "^8.0.13"
},
"devDependencies": {
"@types/dockerode": "^2.4.3",
"@types/jest": "^20.0.2",
"dockerode": "^2.5.0",
"jest": "^20.0.4",
"ts-jest": "^20.0.7",
"ts-lint": "^4.5.1",
"typescript": "^2.4.1"
}
}