-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
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
48
49
50
51
{
"name": "@runhare/node",
"version": "0.2.5",
"description": "",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage"
},
"keywords": [
"background",
"tasks",
"events",
"runhare"
],
"repository": "https://github.com/outsrc/runhare-node",
"author": {
"email": "ernesto@codexsw.com",
"name": "Ernesto F."
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.3",
"@types/nock": "^11.1.0",
"jest": "^26.1.0",
"nock": "^13.0.11",
"prettier": "2.2.1",
"rollup": "^2.18.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-visualizer": "^4.2.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"axios": "^0.21.1",
"crypto-js": "^4.0.0"
}
}