This repository was archived by the owner on Sep 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 KB
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": "@woonivers/woo-translate",
"version": "0.0.6",
"description": "woo-translate CLI",
"bin": {
"woo-translate": "bin/woo-translate"
},
"scripts": {
"format": "prettier --write **/*.{js,ts,tsx,json}",
"lint": "tslint -p .",
"compile": "tsc -p .",
"build": "yarn format && yarn lint && yarn compile",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"core",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"typescript": "3.2.2",
"ts-node": "^7.0.1",
"gluegun": "^2.1.0",
"googleapis": "^27.0.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"@types/node": "^10.12.12",
"@types/jest": "^23.3.10",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"prettier": "^1.12.1",
"jest": "^23.6.0",
"@types/gapi": "0.0.36",
"@types/node-fetch": "^2.1.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}