-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 941 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
{
"name": "@raing3/chrome-extension-dispatcher",
"version": "0.1.0",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"prepack": "npm run build",
"lint": "eslint --ext .ts ./src",
"lint-fix": "eslint --ext .ts ./src --fix",
"test": "jest"
},
"author": "Richard Ainger",
"files": [
"/dist"
],
"dependencies": {
"nanoid": "^3.1.3",
"tslib": "^1.11.1"
},
"devDependencies": {
"@raing3/eslint-config": "^0.2.0",
"@types/chrome": "0.0.102",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"crypto-random-hex": "^1.0.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"wait-for-expect": "^3.0.2"
}
}