forked from PaulBernier/factomjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.13 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.13 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
{
"name": "factom",
"version": "1.0.0",
"description": "Library to build applications on the Factom blockchain",
"main": "src/factom.js",
"types": "factom.d.ts",
"scripts": {
"docs": "documentation build --github --sort-order alpha src/** -f md > docs/doc.md",
"docs-html": "documentation build src/** --sort-order alpha -f html -o docs",
"lint": "eslint src/",
"build": "webpack",
"prepublishOnly": "npm run lint && npm run build && npm run test && npm run docs",
"test": "nyc --reporter=html --reporter=text mocha 'test/*.spec.js'",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test:integration": "mocha test/*.integration.spec.js",
"test:unit": "mocha test/*unit.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulBernier/factomjs.git"
},
"keywords": [
"factom",
"blockchain",
"factoid",
"fct",
"transaction",
"entry-credit",
"factom-cli"
],
"author": "Paul Bernier",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulBernier/factomjs/issues"
},
"homepage": "https://github.com/PaulBernier/factomjs#readme",
"dependencies": {
"axios": "^0.18.0",
"base-58": "0.0.1",
"bluebird": "^3.5.3",
"hash.js": "^1.1.7",
"lodash.chunk": "^4.2.0",
"long": "^4.0.0",
"retry": "^0.12.0",
"tweetnacl": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-async-to-generator": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"documentation": "^9.3.0",
"dotenv": "^6.2.0",
"eslint": "^5.14.1",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"sinon": "^7.2.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}