-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.12 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
{
"name": "ipfs-versidag",
"version": "0.1.1",
"description": "Concurrent version history based on a Merkle-DAG on top of IPFS and IPLD",
"keywords": [
"ipfs",
"ipld",
"dag",
"versions",
"history",
"parcial-order",
"total-order",
"deterministic",
"p2p"
],
"author": "André Cruz <andre@moxy.studio>",
"homepage": "https://github.com/ipfs-shipyard/js-ipfs-versidag",
"repository": {
"type": "git",
"url": "git@github.com:ipfs-shipyard/js-ipfs-versidag.git"
},
"license": "MIT",
"main": "src-cjs/index.js",
"module": "src/index.js",
"files": [
"src",
"src-cjs"
],
"scripts": {
"prebuild": "rimraf src-cjs",
"build": "babel src -d src-cjs",
"lint": "eslint . --ignore-path .gitignore",
"test": "jest",
"prerelease": "npm t && npm run lint && npm run build",
"release": "standard-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags origin master && npm publish"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"peerDependencies": {
"ipfs": "^0.33.1"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"eslint": "^5.9.0",
"eslint-config-moxy": "^6.1.1",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"object-hash": "^1.3.1",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.2",
"standard-version": "^4.4.0"
},
"dependencies": {
"p-timeout": "^2.0.1",
"versidag": "^0.2.1"
}
}