-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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": "oyster-streamable",
"version": "2.2.1",
"description": "Arbitrary size interface for the Oyster network",
"main": "build/index.js",
"files": [
"build/"
],
"browser": "dist/oyster-streamable.js",
"author": "Marcel Lindig <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oysterprotocol/oyster-streamable.git"
},
"scripts": {
"build": "babel src --presets babel-preset-env --out-dir build",
"bundle": "webpack",
"prepublishOnly": "yarn && yarn build",
"pretty": "npx prettier --write src/*.js",
"docs": "npx jsdoc2md -t README.hbs src/*.js > README.md",
"inspect-docs": "npx jsdoc2md --json src/*.js",
"test": "npx jest",
"test:watch": "npx jest --watch --colors"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"yarn pretty",
"yarn docs",
"git add"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"axios": "^0.18.0",
"datamap-generator": "^1.0.8",
"iota.lib.js": "^0.4.7",
"lodash": "^4.17.11",
"mime": "^2.3.1",
"node-forge": "^0.7.5",
"readable-stream": "^2.3.6"
},
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"husky": "^1.1.2",
"jest": "^23.1.0",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"regenerator-runtime": "^0.11.1",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0"
}
}