-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 1.98 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "obss",
"version": "0.0.0",
"description": "A package for Object Based StyleS in css-in-js.",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepublishOnly": "npm test && npm run build",
"test": "jest"
},
"dependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.7.1",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"microbundle": "^0.11.0",
"prettier": "^1.18.2"
},
"source": "index.js",
"main": "dist/lib.js",
"module": "dist/lib.mjs",
"unpkg": "dist/lib.umd.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"eslintConfig": {
"extends": "react",
"plugins": [
"prettier"
],
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"rules": {
"indent": 0,
"no-unused-vars": 1,
"object-curly-spacing": [
2,
"never"
],
"operator-linebreak": 0,
"prettier/prettier": "error",
"quote-props": [
1,
"as-needed"
],
"space-before-function-paren": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true
},
"author": "Romello Goodman",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/romellogoodman/obss.git"
},
"bugs": {
"url": "https://github.com/romellogoodman/obss/issues"
},
"homepage": "https://github.com/romellogoodman/obss#readme",
"keywords": [
"css",
"css-in-js"
]
}