-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "@mintuz/react-css-loader",
"version": "3.0.2",
"main": "index.js",
"private": false,
"description": "A React high order component that provides functionality for tree shaking CSS per component",
"homepage": "http://github.com/mintuz/react-css-loader/tree/master",
"keywords": [
"CSS Loader",
"React CSS Loader",
"Tree Shaking CSS",
"Tree Shake CSS",
"Tree Shake",
"CSS",
"CSS Tree shaking"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mintuz/react-css-loader.git"
},
"bugs": {
"url": "https://github.com/mintuz/react-css-loader/issues"
},
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"prettier": "prettier --single-quote --tab-width=4 --print-width=80 \"./src/**/*.js\" \"./test/**/*js\" --write",
"babel": "babel src --out-dir dist --ignore '**/*.test.js'",
"test": "npm run build && jest --coverage --no-cache",
"build": "npm run babel",
"jest": "jest --watch"
},
"jest": {
"testPathIgnorePatterns": [
".node_modules/",
".dist/",
".examples/",
"./server.js",
"./index.js"
],
"setupFiles": [
"./jest-setup.js"
]
},
"author": "Adam Bulmer",
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-tree-walker": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-classes": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"jest": "^23.6.0",
"prettier": "^1.15.3"
}
}