-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
99 lines (99 loc) · 2.62 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
96
97
98
99
{
"name": "@friendsofreactjs/react-css-themr",
"description": "Friends of ReactJS: React CSS Themr",
"homepage": "https://github.com/FriendsOfReactJS/react-css-themr#readme",
"version": "4.3.1",
"main": "./lib",
"author": "Javi Velasco <[email protected]> (http://javivelasco.com/)",
"repository": {
"type": "git",
"url": "https://github.com/FriendsOfReactJS/react-css-themr.git"
},
"bugs": {
"url": "https://github.com/FriendsOfReactJS/react-css-themr/issues"
},
"keywords": [
"theme",
"css theme",
"react css theme",
"css-modules",
"customization",
"react",
"react-css-themr",
"theming",
"friends of react"
],
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"invariant": "^2.2.4",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/react": "^16.9.5",
"babel-eslint": "^10.0.3",
"commitizen": "^4.1.2",
"conventional-changelog-eslint": "^3.0.8",
"cz-adapter-eslint": "^0.3.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"fbjs": "^1.0.0",
"jest": "^24.9.0",
"jsdom": "^15.1.1",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"rimraf": "^3.0.0",
"semantic-release": "^17.1.1",
"sinon": "^7.5.0",
"travis-deploy-once": "^5.0.11",
"typescript": "^3.9.7"
},
"files": [
"types",
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"lint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"prepublish": "rimraf lib && npm run build",
"test": "jest",
"test:watch": "npm test -- --watch",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0"
},
"types": "./types/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-adapter-eslint"
}
},
"publishConfig": {
"access": "public"
}
}