-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
63 lines (63 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "radspec",
"version": "1.12.1",
"description": "Radspec is a safe alternative to Ethereum's natspec",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"docs": "documentation build src/index.js -f md -o docs/API.md --shallow",
"lint": "standard \"src/**/*.js\" && documentation lint \"src/**/*.js\"",
"test": "nyc ava",
"test:coverage": "nyc --all --reporter=lcov --reporter=text-summary --reporter=html npm test",
"build": "babel src -d dist -s",
"prepublishOnly": "env NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aragon/radspec.git"
},
"keywords": [
"language",
"compiler",
"ethereum"
],
"author": "Aragon Association <legal@aragon.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aragon/radspec/issues"
},
"homepage": "https://github.com/aragon/radspec#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-rc.1",
"babel-eslint": "^10.0.1",
"babel-preset-minify": "^0.5.0",
"codecov": "^3.6.5",
"documentation": "^9.0.0-alpha.0",
"nyc": "^14.1.1",
"standard": "^12.0.1"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"bn.js": "^4.11.8",
"date-fns": "2.0.0-alpha.22",
"web3-eth": "^1.2.1",
"web3-eth-abi": "^1.2.1",
"web3-utils": "^1.2.1"
},
"ava": {
"require": [
"@babel/register"
]
},
"standard": {
"parser": "babel-eslint"
}
}