-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "scrap-script",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:daiz713/ScrapScripts.git",
"author": "daiiz <da.iz.mg@gmail.com>",
"license": "MIT",
"scripts": {
"build": "run-s build:**",
"build:babel": "babel client/ --out-dir browser/build/ --minified --source-maps false",
"build:browserify": "browserify -t [ babelify ] src/index.js -o browser/build/bundle.js -v",
"watch": "run-p watch:**",
"watch:babel": "npm run build:babel -- --watch",
"watch:browserify": "watchify -t [ babelify ] src/index.js -o browser/build/bundle.js -v",
"zip": "run-s zip:**",
"zip:chrome": "zip -r -FS ./zip/chrome.zip browser/",
"zip:firefox": "sh zip-firefox.sh",
"test": "run-s test:**",
"test:standard": "standard --fix src/*.js src/**/*.js"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"jquery": "^3.3.1",
"npm-run-all": "^4.0.2",
"watchify": "^3.9.0"
},
"devDependencies": {
"ava": "^0.20.0",
"standard": "^10.0.2"
},
"standard": {
"global": [
"chrome",
"window",
"document",
"$"
]
}
}