-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 909 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 909 Bytes
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
{
"name": "standardandpoorjs",
"version": "1.0.7",
"description": "Returns all stocks in the S&P 500",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsc",
"start": "nodemon dist/main.js",
"start:dev": "ts-node src/main.ts",
"test": "tsc && jest",
"lint": "standard"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"**/assertion-data/SP500WikiPage.js"
]
},
"homepage": "https://github.com/Patrickskiba/StandardAndPoorJS",
"author": "Patrick Skiba <pskiba@posteo.net>",
"license": "MIT",
"devDependencies": {
"@types/cheerio": "0.22.10",
"@types/node": "10.12.18",
"jest": "24.8.0",
"nock": "10.0.4",
"nodemon": "1.18.9",
"standard": "12.0.1",
"ts-node": "7.0.1",
"typescript": "3.2.2"
},
"dependencies": {
"cheerio": "1.0.0-rc.3"
}
}