-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "stock-quote",
"version": "1.0.0",
"description": "Real time stock quote data using yahoo-stocks.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"pretest": "eslint index.js",
"precommit": "eslint",
"fmt": "prettier --write {index.js,README.md}",
"build": "microbundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sperahd/stock-quote.git"
},
"author": "Ankit Prakash <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sperahd/stock-quote/issues"
},
"homepage": "https://github.com/sperahd/stock-quote#readme",
"dependencies": {
"request": "^2.87.0"
},
"keywords": [
"finance",
"stocks",
"price",
"quote",
"stock",
"scrip"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-strongloop": "^2.1.0",
"jest": "^23.0.0",
"microbundle": "^0.4.4",
"prettier": "1.12.1"
}
}