-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "@doubco/logbook",
"version": "1.0.8",
"description": "Simple logger library for JS.",
"main": "lib/index.js",
"commonjs": "lib/index.cjs.js",
"module": "lib/index.es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/doubco/logbook.git"
},
"author": "Doub.co <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"setup": "yarn",
"release": "npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rollup -c -w",
"build": "rollup -c",
"prepare": "npm run build"
},
"dependencies": {},
"keywords": [
"theme",
"styled",
"components",
"react",
"helper"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.5.4",
"@types/react": "^17.0.30",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "8.0.1",
"eslint-config-next": "11.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/doubco/log-book/issues"
},
"homepage": "https://github.com/doubco/log-book#readme",
"directories": {
"lib": "lib"
}
}