-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "correntlynote",
"version": "0.1.9",
"description": "Framework to work with Corrently Invest Tokens (CORI) in a similar way as with notes. Having CORI Tokens hold renewable generation capacity as a bound value and actual production over time as a derived (secondary) substition.",
"keywords": [
"energy",
"blockchain",
"corrently",
"stromdao",
"capacitytoken",
"cori",
"framework",
"exchange"
],
"homepage": "https://github.com/energychain/CorrentlyNote#readme",
"bugs": {
"url": "https://github.com/energychain/CorrentlyNote/issues"
},
"license": "Apache-2.0",
"author": "Corrently Corp <contact@corrently.com>",
"main": "src/correntlynote.js",
"repository": {
"type": "git",
"url": "git+https://github.com/energychain/CorrentlyNote.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha --harmony -r esm --reporter spec tests/index.js",
"pretest": "eslint --ignore-path .gitignore src/",
"dist": "npx webpack"
},
"dependencies": {
"ethers": "^4.0.0",
"json-formatter-js": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-cli": "^6.26.0",
"cbuild": "^0.1.8",
"coveralls": "^3.0.2",
"eslint": "^5.6.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-jasmine": "^2.10.1",
"esm": "^3.0.84",
"jspm": "^0.16.53",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"systemjs": "^2.0.0",
"systemjs-builder": "^0.16.13",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
},
"jspm": {
"directories": {
"baseURL": "-./dist"
},
"dependencies": {},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}