-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 839 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
{
"name": "npm-nested-dep",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "npm run clean && parcel build src/manifest.json --no-source-maps --no-content-hash --target browser",
"watch": "parcel watch src/manifest.json --no-hmr --target browser",
"clean": "node clean.js",
"lint": "eslint src/**/**.ts",
"lint-fix": "eslint src/**/**.ts --fix"
},
"devDependencies": {
"@types/semver": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-web-extension": "^1.5.2",
"typescript": "^3.6.3"
},
"dependencies": {
"semver": "^7.5.2",
"webextension-polyfill-ts": "^0.10.0"
},
"browserslist": [
"last 1 Chrome versions"
]
}