forked from GoogleCloudPlatform/inline-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 949 Bytes
/
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
{
"name": "inline-fixtures",
"version": "1.1.0",
"description": "",
"repository": "ofrobots/inline-fixtures",
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"engines": {
"node": ">= 8.0.0"
},
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"test": "mocha build/test/*.js",
"posttest": "npm run check"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"@types/tmp": "0.0.34",
"gts": "^1.0.0-0",
"mocha": "^6.0.2",
"source-map-support": "^0.5.11",
"typescript": "~3.3.0"
},
"dependencies": {
"make-dir": "^2.1.0",
"tmp": "0.0.33"
}
}