forked from stacks-network/subdomain-registrar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.73 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
64
65
66
67
{
"name": "blockstack-subdomain-registrar",
"version": "0.3.0",
"description": "A subdomain registrar for Blockstack",
"main": "lib/index.js",
"dependencies": {
"async-lock": "^1.1.3",
"bitcoinjs-lib": "^3.3.2",
"blockstack": "^17.2.0",
"cors": "^2.8.4",
"express": "^4.16.2",
"node-fetch": "^2.0.0",
"ripemd160": "^2.0.1",
"sqlite3": "^4.0.2",
"winston": "^2.4.0",
"zone-file": "^0.2.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^6.0.4",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^2.10.2",
"eslint-plugin-import": "^1.8.1",
"flow-bin": "^0.49.1",
"nock": "^9.1.6",
"nyc": "^11.4.1",
"tape": "^4.6.3",
"tape-istanbul": "^1.2.0"
},
"bin": {
"blockstack-subdomain-registrar": "./lib/index.js"
},
"scripts": {
"start": "npm run build && node lib/index.js",
"build": "babel src -d lib",
"flow": "flow",
"lint": "eslint src",
"compile-tests": "npm run lint && npm run flow && npm run build && babel tests/src -d tests/lib",
"test-inner": "npm run compile-tests && node tests/lib/index.js",
"test": "nyc --reporter=text npm run test-inner"
},
"nyc": {
"include": [
"lib/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/subdomain-registrar.git"
},
"author": {
"name": "Blockstack PBC",
"email": "admin@blockstack.com",
"url": "https://blockstack.com"
},
"license": "MIT",
"contributors": [
{
"name": "Aaron Blankstein"
}
],
"bugs": {
"url": "https://github.com/blockstack/subdomain-registrar/issues"
},
"homepage": "https://github.com/blockstack/subdomain-registrar#readme"
}