-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "cryptoeconomics-an-introduction",
"version": "1.0.0",
"description": "Code for the course!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "http-server public",
"chapter1": "node c1_CentralPaymentOperator/paypalWithSigs.js",
"build-c2": "browserify c2_NetworkDoubleSpends/paypalWithSigs.js -o public/bundle.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cryptoeconomics-study/code.git"
},
"keywords": [
"cryptoeconomics"
],
"author": "Cryptoeconomics Study Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/cryptoeconomics-study/code/issues"
},
"homepage": "https://github.com/cryptoeconomics-study/code#readme",
"dependencies": {
"crypto": "^1.0.1",
"d3-random": "^1.1.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eth-crypto": "^1.3.4",
"hex-to-binary": "^1.0.1",
"http-server": "^0.11.1",
"lodash": "^4.17.14",
"mocha": "^6.1.4",
"npm": "^6.10.1",
"seedrandom": "^2.4.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3"
}
}