-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "factom-did",
"version": "0.1.6",
"description": "factom-did is a JavaScript library for working with DIDs on the Factom blockchain.",
"main": "src/factom-did.js",
"module": "dist/factom-did.js",
"files": [
"src/*",
"test/*",
"dist/*"
],
"scripts": {
"build": "webpack",
"lint": "eslint \"{src,test}/**/*.js\"",
"prepublishOnly": "npm run format && npm run lint && npm run build && npm run test",
"test": "nyc --reporter=html --reporter=text mocha 'test/**/*.spec.js'",
"format": "prettier --write \"{src,test,examples}/**/*.js\""
},
"author": "Peter Asenov",
"contributors": [
"Valentin Ganev"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:factomatic/factom-did-js.git"
},
"keywords": [
"factom",
"blockchain",
"digital identity",
"did"
],
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/runtime": "^7.8.7",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-bytes": "^0.1.2",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^7.1.0",
"nyc": "^15.0.1",
"prettier": "1.19.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"bs58": "^4.0.1",
"elliptic": "^6.5.2",
"tweetnacl": "^1.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.js": [
"eslint --fix",
"prettier --write"
]
}
}