-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "crossbrowser-webextension",
"version": "0.2.6",
"description": "Tools to build crossbrowser FF/Chrome/Edge webextension",
"main": "./code/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js build code",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/lawlietmester/webextension.git"
},
"keywords": [
"webextension",
"webextension api"
],
"author": "lawlietmester",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"ncp": "^2.0.0",
"rimraf": "^3.0.0",
"vinyl-source-stream": "^2.0.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}