-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "changelog-view",
"version": "1.10.2",
"description": "Tool to view changelog of package in console",
"bin": {
"changelog-view": "bin/changelog-view"
},
"repository": "https://github.com/jdeniau/changelog-view",
"author": "Julien Deniau <[email protected]>",
"license": "MIT",
"dependencies": {
"find-versions": "^3.0.0",
"ink": "^2.1.0",
"ink-spinner": "^3.0.0",
"ink-tab": "^2.1.3",
"marked": "^0.7.0",
"marked-terminal": "^3.2.0",
"marked-to-md": "^1.0.1",
"minimist": "^1.2.0",
"node-fetch": "^2.1.2",
"react": "^16.0.0",
"semver": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"core-js": "^3.0.0",
"jest": "^24.5.0",
"lint-staged": "^9.2.1",
"nock": "^10.0.0",
"prettier": "^1.16.4",
"svg-term-cli": "^2.1.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"scripts": {
"test": "jest",
"build": "webpack --config webpack.config.js && (git commit -m 'build binary' bin/bin.js || true)",
"demo": "clear && babel-node ./src/bin.js sebastianbergmann/[email protected] jdeniau/[email protected]",
"prepublishOnly": "npm run build",
"precommit": "lint-staged"
},
"jest": {
"transform": {
".+\\.(js)$": "babel-jest",
".+\\.(md)$": "<rootDir>/fileTransformer.js"
}
},
"lint-staged": {
"*.{js,jsx,json}": [
"prettier --write",
"git add"
]
}
}