-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 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
{
"name": "chrome-content-scripts",
"version": "1.0.0",
"description": "",
"main": "init.js",
"scripts": {
"build-main": "browserify lib/index.js -t babelify -o dist/build.js -v",
"watch-main": "watchify lib/index.js -t babelify -o dist/build.js -v -d",
"build-options": "browserify lib/options.js -t babelify -o dist/options.js -v",
"watch-options": "watchify lib/options.js -t babelify -o dist/options.js -v -d",
"build": "npm run build-main | npm run build-options",
"watch": "npm run watch-main | npm run watch-options"
},
"repository": {
"type": "git",
"url": "https://github.com/emyk/chrome-content-scripts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/emyk/chrome-content-scripts/issues"
},
"homepage": "https://github.com/emyk/chrome-content-scripts",
"devDependencies": {
"babel-core": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"watchify": "^3.7.0"
}
}