-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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": "hyperdocs",
"version": "1.2.0",
"description": "Get documentation right in your hyper terminal.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint 'src/**/*.js' --fix",
"lint:staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"build": "rm -rf lib/* && babel src -d lib",
"prerelease": "npm run build",
"release": "standard-version && git push --follow-tags origin master; npm publish"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "Unai Esteibar <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/uesteibar/hyperdocs.git"
},
"keywords": [
"hyper",
"hyper.app"
],
"dependencies": {
"hyperterm-window": "^1.0.1",
"jss": "^6.5.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-jss": "^8.2.1"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-eslint": "7.2.1",
"babel-jest": "19.0.0",
"babel-preset-env": "1.2.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.23.0",
"babel-preset-stage-1": "6.22.0",
"eslint": "3.18.0",
"eslint-config-standard": "7.1.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "6.10.3",
"eslint-plugin-standard": "2.1.1",
"lint-staged": "3.4.0",
"pre-commit": "1.2.2",
"standard-version": "4.0.0"
}
}