-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"name": "@jgierer12/hooks",
"version": "0.2.5",
"description": "jgierer12's personal library of reusable React hooks",
"main": "index.js",
"repository": "https://github.com/jgierer12/hooks",
"author": "Jonas Gierer <[email protected]>",
"license": "MIT",
"scripts": {
"build": "run-p build:*",
"build:pkg": "pack build",
"build:docs": "jsdoc2md --template README.hbs.md --files 'src/**/*.js' | prettier --parser=markdown > README.md",
"develop": "run-s 'test:unit -- --watch'",
"test": "run-s test:static test:unit",
"test:unit": "jest",
"test:static": "run-s lint",
"lint": "run-p --print-label --continue-on-error lint:*",
"lint:js": "eslint --color --ignore-path .gitignore '**/*.js'",
"lint:other": "prettier --check --ignore-path .gitignore '**/*.{json,md,mdx,yml,graphql}'",
"release": "np --contents=pkg",
"version": "run-s build && git add README.md",
"postpublish": "npm publish pkg --ignore-scripts --@jgierer12:registry='https://registry.npmjs.org'"
},
"publishConfig": {
"access": "public"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"dependencies": {
"@jgierer12/merge-deep": "^3.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@jgierer12/js-configs": "^1.0.2",
"@pika/pack": "^0.3.7",
"@pika/plugin-build-node": "^0.3.16",
"@pika/plugin-build-web": "^0.3.16",
"@pika/plugin-standard-pkg": "^0.3.16",
"@types/jest": "^24.0.12",
"eslint": "^6.3.0",
"jest": "^24.7.1",
"jsdoc-to-markdown": "^4.0.1",
"np": "^5.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-hooks-testing-library": "^0.5.0",
"react-test-renderer": "^16.8.6"
},
"peerDependencies": {
"react": "^16.8.6"
}
}