-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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": "classier-react",
"version": "1.0.0-alpha.9",
"publishConfig": {
"tag": "next"
},
"description": "Use stylesheets for styles, not Javascript",
"keywords": [
"react",
"classnames",
"styles",
"just",
"use",
"css"
],
"homepage": "https://github.com/d3dc/classier-react",
"bugs": {
"url": "git+https://github.com/d3dc/classier-react/issues"
},
"license": "ISC",
"main": "dist/classier-react.cjs.js",
"module": "dist/classier-react.esm.js",
"browser": "dist/classier-react.umd.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/d3dc/classier-react.git"
},
"scripts": {
"test": "NODE_ENV=development jest",
"release": "release-it",
"build": "npm run clean && npm test && NODE_ENV=production rollup -c",
"clean": "npm run clean:dist & npm run clean:build",
"clean:build": "npx rimraf build",
"clean:dist": "npx rimraf dist"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test/_setup.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"jest": "^23.4.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"regenerator-runtime": "^0.12.1",
"release-it": "^7.5.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"react": "^16.0.0"
},
"authors": [
"Sam Richard <[email protected]> (https://github.com/d3dc)"
]
}