-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.91 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "chainsql",
"version": "3.0.9",
"description": "A database driver for chainsql ",
"main": "dist/npm/",
"directories": {
"test": "test"
},
"files": [
"dist/npm/*",
"bin/*",
"test/*"
],
"dependencies": {
"bignumber.js": "^2.4.0",
"chainsql-keypairs": "^0.11.1",
"chainsql-lib": "^1.1.23",
"elliptic": "^5.1.0",
"hash.js": "^1.0.3",
"lodash": "^4.17.21",
"protobufjs": "^6.11.3",
"rfc1751.js": "^1.0.0",
"rimraf": "^3.0.0",
"sjcl": "~1.0.3",
"web3-core-helpers": "1.0.0-beta.36",
"web3-eth-abi": "1.0.0-beta.36",
"web3-utils": "1.0.0-beta.36"
},
"devDependencies": {
"assert-diff": "^1.0.1",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.1",
"babel-plugin-syntax-flow": "^6.3.13",
"babel-plugin-transform-flow-strip-types": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.3.13"
},
"scripts": {
"build": "gulp",
"doctoc": "doctoc docs/index.md --title '# ChainsqlAPI Reference' --github --maxlevel 2",
"docgen": "node --harmony scripts/build_docs.js",
"clean": "rimraf dist/npm && rimraf build/flow",
"typecheck": "babel --optional runtime --blacklist flow -d build/flow/ src/ && flow check",
"compile": "babel -D --optional runtime -d dist/npm/ src/",
"watch": "babel -w -D --optional runtime -d dist/npm/ src/",
"compile-with-source-maps": "babel -D --optional runtime -s -t -d dist/npm/ src/",
"prepublish": "npm run clean && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chainsql/node-chainsql-api"
},
"keywords": [
"chainsql",
"ripple",
"mysql"
],
"author": "peersafe",
"license": "ISC",
"bugs": {
"url": "https://github.com/peersafe/node-chainsql/issues"
},
"homepage": "http://chainsql.net/"
}