This repository was archived by the owner on Nov 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 KB
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
{
"private": true,
"name": "sms-verification",
"version": "0.1.0",
"description": "SMS verification for Parity.",
"main": "index.js",
"scripts": {
"get-contract": "curl --fail -L 'https://raw.githubusercontent.com/ethcore/contracts/master/SMSVerification.sol' > SMSVerification.sol",
"lint": "standard",
"prepush": "npm run get-contract && npm run lint && npm run compile",
"compile": "solcjs --abi --bin --optimize SMSVerification.sol -o contracts"
},
"keywords": [],
"author": "Ethcore Team <admin@ethcore.io>",
"maintainers": [
"Jannis R <mail@jannisr.de>"
],
"license": "GPL-3.0",
"repository": "ethcore/sms-verification",
"engine": {
"node": ">=6"
},
"dependencies": {
"body-parser": "^1.15.2",
"boom": "^5.0.0",
"co": "^4.6.0",
"co-express": "^2.0.0",
"config": "^1.24.0",
"corser": "^2.0.1",
"express": "^4.14.0",
"fetch-ponyfill": "^4.0.0",
"hsts": "^2.0.0",
"leveldown": "^1.5.0",
"levelup": "^1.3.3",
"morgan": "^1.7.0",
"nocache": "^2.0.0",
"solc": "^0.4.4",
"spdy": "^3.4.4",
"standard": "^8.5.0",
"then-levelup": "^1.0.1",
"twilio": "^3.0.0",
"web3": "^0.19.0"
},
"peerDependencies": {
"pm2": "^2.0.18"
},
"devDependencies": {
"standard": "^8.4.0",
"husky": "^0.14.1"
}
}