-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "crypto-roi",
"version": "1.0.2",
"description": "A ROI calculator of holding top coins on coinmarketcap.com",
"main": "dist/index.js",
"author": "Phat Pham (https://onroads.xyz)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/phatpham9/crypto-roi"
},
"bugs": {
"url": "https://github.com/phatpham9/crypto-roi/issues"
},
"homepage": "https://github.com/phatpham9/crypto-roi#readme",
"engines": {
"node": ">=9"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint .",
"start": "nodemon --exec \"yarn build\"",
"prebuild": "yarn run clean && yarn lint",
"build": "babel index.js --out-dir dist --minified",
"test": "node test"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-airbnb": "^2.4.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-react": "7.1.0",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "airbnb"
},
"babel": {
"presets": [
"airbnb"
],
"plugins": [
"transform-runtime",
"transform-regenerator"
]
}
}