This repository has been archived by the owner on Dec 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "factomjs-util",
"version": "0.1.8",
"description": "a collection of utility functions for Factom",
"main": "index.js",
"scripts": {
"clean": "rm dist/factomjs-util.js",
"coverage": "istanbul cover _mocha",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard index.js",
"prepublish": "npm run lint && npm run test && npm run build:docs && npm run build:dist",
"test": "npm run test:node",
"test:browser": "karma start karma.conf.js",
"test:node": "istanbul test mocha -- --reporter spec",
"build:docs": "documentation --github -f md ./index.js > ./docs/index.md",
"build:contributor": "contributor",
"build:no-dist": "browserify index.js -o dist/factomjs-util.js --debug -t [ babelify --presets [ es2015 react ] ]",
"build:dist": "browserify -r ./index.js:factomjs-util -s Util -t [ babelify --presets [ es2015 react ] ] > dist/factomjs-util.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/MyFactomWallet/factomjs-util.git"
},
"keywords": [
"factom",
"utilties"
],
"author": "steven masley <[email protected]>",
"contributors": [
{
"name": "Steven Masley",
"email": null,
"url": "https://github.com/Emyrk",
"contributions": 22,
"additions": 97449,
"deletions": 43524,
"hireable": null
}
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/MyFactomWallet/factomjs-util/issues"
},
"homepage": "https://github.com/MyFactomWallet/factomjs-util",
"dependencies": {
"base-58": "0.0.1",
"bindingify": "^1.0.1",
"bn.js": "^4.8.0",
"create-hash": "^1.1.2",
"is-hex-prefixed": "^1.0.0",
"safe-buffer": "^5.1.1",
"strip-hex-prefix": "^1.0.0",
"supercop.js": "^2.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"contributor": "^0.1.25",
"coveralls": "^2.11.4",
"documentation": "^3.0.4",
"istanbul": "^0.4.1",
"karma": "^1.3.0",
"karma-browserify": "^5.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-detect-browsers": "2.2.5",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^3.1.2",
"standard": "*",
"uglifyify": "^4.0.3"
},
"standard": {
"globals": [
"describe",
"it"
]
}
}