-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "my-dummy-npm-and-deno-module",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/garronej/my_dummy_npm_and_deno_module.git"
},
"main": "dist/lib/index.js",
"dependencies": {
"axios": "^1.3.6",
"ipaddr.js": "^1.9.1",
"js-yaml": "^3.13.1",
"left-pad": "^1.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"run-exclusive": "^2.2.13",
"sha3": "^2.1.3",
"ts-md5": "^1.2.7"
},
"scripts": {
"build": "tsc && denoify",
"test:node": "node dist/test/",
"test:deno": "deno run --unstable --reload --allow-read --allow-env --allow-net deno_dist/test/deno_index.ts",
"test": "npm run test:node && npm run test:deno"
},
"devDependencies": {
"@types/js-yaml": "^3.12.3",
"@types/node": "^10.0.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"colors": "^1.4.0",
"denoify": "^1.6.16",
"tsafe": "^1.4.3",
"typescript": "^4.9.5"
}
}