-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 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
56
57
58
{
"name": "glamor-jss",
"version": "1.4.1",
"description": "Use JSS in glamor style",
"license": "MIT",
"main": "lib/glamor-jss.cjs.js",
"author": {
"name": "Daniel Lehr",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dan-lee/glamor-jss"
},
"files": [
"lib",
"src",
"hoist.js"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "webpack --mode production",
"prettier": "prettier --write 'src/**.js'",
"start": "cd example && yarn start",
"test": "jest",
"postversion": "git push --tags",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {
"es6-weak-map": "2.0.3",
"hash-it": "4.0.4",
"jss": "9.8.7",
"jss-preset-default": "4.5.0",
"memoize-weak": "1.0.2"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/preset-env": "7.7.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"jest": "24.9.0",
"prettier": "1.19.1",
"rimraf": "2.7.1",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-node-externals": "1.7.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}