-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "super-artifacts",
"version": "0.0.3",
"description": "Truffle plugin to harvest artifacts for Superblocks deployments.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --config tslint.json --project tsconfig.json",
"build": "rm -rf dist && tsc",
"publish-lib": "node publish.js",
"test": "mocha --require ts-node/register --exit src/**/*spec.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:SuperblocksHQ/super-artifacts.git"
},
"author": "Superblocks",
"license": "ISC",
"bugs": {
"url": "https://github.com/SuperblocksHQ/super-artifacts/issues"
},
"homepage": "https://www.superblocks.com",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/chai-as-promised": "^7.1.2",
"@types/ethereum-protocol": "^1.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^13.7.0",
"@types/node-fetch": "^2.5.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.2",
"ts-node": "^8.5.4",
"ts-sinon": "^1.0.24",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}