-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "xtendize",
"version": "0.0.26",
"description": "Helps us create chrome extension apps",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest --coverage",
"pre-checkin": "yarn run format && yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IcaliaLabs/xtendize.git"
},
"keywords": [
"chrome",
"icalia",
"extension"
],
"author": "Icalia Labs",
"contributors": [
{
"name": "Vov",
"url": "https://ical.ink/vov"
}
],
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.154",
"@types/webextension-polyfill": "^0.8.0",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"jest-runtime": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"typescript-formatter": "^7.2.2",
"webextension-polyfill": "^0.8.0",
"yaml": "^1.10.2"
},
"files": [
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map"
]
}