-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "chrome-extension-i18n-shim",
"description": "chrome.i18n shim for testing purposes",
"version": "0.1.0",
"license": "MIT",
"author": "Andrew Durber",
"main": "dist/index.js",
"repository": {
"url": "git://github.com/aidurber/chrome-i18n-shim.git",
"type": "git"
},
"module": "dist/chrome-i18n-shim.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"docs:gen": "typedoc --out docs ./src",
"prepublish": "yarn build",
"semantic-release": "semantic-release"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.19",
"husky": "^3.0.9",
"pretty-quick": "^2.0.0",
"semantic-release": "^15.13.27",
"tsdx": "^0.10.5",
"tslib": "^1.10.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.4"
}
}