-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.46 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": "@everipedia/prediqt-js",
"version": "2.0.0-beta.23",
"description": "PredIQt JavaScript/TypeScript Client Library",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "tsc && yarn minify",
"test": "jest --coverage",
"posttest": "tslint -p .",
"minify": "jsmin -o ./dist/prediqt.min.js ./dist/prediqt.js",
"docs": "tsc && documentation readme dist/prediqt.js --no-markdown-toc -s API && documentation readme dist/prediqt-graph.js --no-markdown-toc -s 'Graph API'"
},
"homepage": "https://github.com/EveripediaNetwork/prediqt-js",
"repository": {
"type": "git",
"url": "git+https://github.com/EveripediaNetwork/prediqt-js.git"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@types/node-fetch": "^2.5.4",
"@types/text-encoding": "^0.0.35",
"documentation": "12.1.4",
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"jsmin": "^1.0.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"eosjs": "^20.0.0",
"isomorphic-fetch": "^2.2.1"
}
}