-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 880 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
{
"name": "github-autosuggest",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:iampueroo/github-autosuggest.git",
"author": "Ignacio Ampuero <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"babel-minify": "^0.2.0",
"jest": "^24.8.0",
"prettier": "1.9.2",
"webpack": "^3.10.0"
},
"scripts": {
"build": "webpack webpack.config.js && minify static/bundle.min.js -o static/bundle.min.js",
"dev": "webpack webpack.config.js --watch",
"prettify": "prettier --single-quote --trailing-comma es5 ./js/*.js --write",
"zip-chrome": "zip dist/chrome-dist.zip static/*",
"test": "jest"
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}
}