-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "stocks.js",
"version": "0.0.19",
"description": "stocks.js offers an easy to use stock market data API",
"homepage": "https://github.com/wagenaartje/stocks.js",
"main": "./dist/stocks",
"scripts": {
"build": "webpack",
"test": "mocha test",
"deploy": "npm run test:travis && npm publish",
"test:travis": "npm run build && npm run test"
},
"dependencies": {
"node-fetch": "^1.7.1"
},
"devDependencies": {
"semistandard": "*",
"webpack": "^3.3.0",
"chai": "^4.1.0",
"chai-datetime": "^1.5.0",
"mocha": "^3.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/wagenaartje/stocks.js.git"
},
"keywords": [
"stocks",
"market",
"api"
],
"author": {
"name": "Thomas Wagenaar",
"email": "wagenaartje@protonmail.com",
"url": "https://wagenaartje.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wagenaartje/stocks.js/issues",
"email": "wagenaartje@protonmail.com"
},
"engines": {
"node": ">=7.6"
}
}