-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "polyprice",
"version": "1.0.9",
"description": "Minimalistic real-time crypto price tracker. (no API key needed)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "yarn clean && NODE_ENV=production rollup -c",
"clean": "rm -rf dist",
"cleanf": "yarn clean && rm -rf node_modules",
"test": "mocha --require ts-node/register test/index.ts --timeout 20000"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.0",
"acey-node-store": "^1.0.6",
"chai": "^4.2.0",
"fs": "^0.0.1-security",
"mocha": "^7.2.0",
"rollup": "^2.77.2",
"rollup-plugin-uglify": "^6.0.4",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^4.7.4"
},
"dependencies": {
"acey": "^1.6.3",
"node-fetch-native": "^1.6.4"
}
}