-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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": "crypto-currencies-values-ext",
"version": "0.0.2",
"description": "Google Chrome extension to show crypo currencies values",
"main": "index.js",
"author": "Christian Varisco",
"license": "MIT",
"scripts": {
"lint": "eslint src test",
"build": "./scripts/build.sh",
"start": "webpack-dev-server --config webpack.config.js --watch",
"test": "ava"
},
"ava": {
"files": [
"src/**/test.spec.js"
],
"concurrency": 5,
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"ava": "0.22.0",
"babel-cli": "6.18.0",
"babel-eslint": "7.1.1",
"babel-loader": "7.1.2",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.7",
"eslint": "3.14.0",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"style-loader": "0.19.0",
"webpack": "3.3.0",
"webpack-dev-server": "2.9.7"
}
}