-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.52 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
{
"name": "merkling",
"version": "2.0.0-alpha.7",
"description": "JS Object to IPLD mapping layer",
"homepage": "https://github.com/kanej/merkling",
"bugs": {
"url": "https://github.com/kanej/merkling/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kanej/merkling.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest --runInBand --coverage --config=jest.unit.json",
"pretest:integration": "rimraf ./.test-ipfs",
"test:integration": "jest --detectOpenHandles --runInBand --config=jest.integration.json",
"lint": "eslint --fix ./{src,test}/**/*.ts",
"build": "tsc",
"prepublish": "tsc",
"dev": "webpack-dev-server --open",
"docs-readme": "documentation readme --config documentation.yml --document-exported --section=API src/merkling.ts src/merklingSession.ts",
"docs": "documentation build --format html --theme node_modules/clean-documentation-theme --o docs",
"docs-dev": "documentation serve --watch --theme node_modules/clean-documentation-theme",
"semantic-release": "semantic-release"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"ipfs",
"ipld"
],
"author": "John Kane <[email protected]>",
"license": "MIT",
"dependencies": {
"cids": "^0.7.4"
},
"peerDependencies": {
"ipfs": "^0.41.2"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/node": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"awesome-typescript-loader": "^5.2.1",
"clean-documentation-theme": "^0.5.2",
"clean-webpack-plugin": "^0.1.18",
"cz-conventional-changelog": "^3.0.2",
"documentation": "^11.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"ipfs": "^0.41.2",
"ipfs-http-client": "^42.0.0",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"semantic-release": "^16.0.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
},
"standard": {
"env": [
"jest"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "master"
}
}