-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 932 Bytes
/
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": "arverify",
"version": "0.0.11",
"description": "Anonymous Arweave Verification.",
"repository": "[email protected]:ArVerify/arverify-js.git",
"author": "John Letey <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "rollup -c rollup.test.js && mocha 'build/index.test.js' --no-timeout --exit",
"fmt": "prettier --write ."
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"ar-gql": "^0.0.6",
"arweave": "^1.9.1",
"axios": "^0.21.1",
"smartweave": "^0.4.10"
},
"devDependencies": {
"@rollup/pluginutils": "^4.1.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"rollup": "^2.32.1",
"rollup-plugin-typescript2": "^0.28.0",
"typescript": "^4.0.5"
}
}