-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.14 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.14 KB
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
{
"name": "react-style-engine",
"version": "1.1.1",
"description": "An in script style engine to be used with state/redux and shadow dom",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/@curiosity26"
},
"scripts": {
"build": "NODE_ENV=production $(npm bin)/babel --extensions \".ts,.tsx\" --ignore \"**/*.d.ts\" src --out-dir dist",
"lint": "$(npm bin)/eslint src/**/* test/**/*",
"test": "npm run lint && $(npm bin)/jest"
},
"repository": {
"type": "git",
"url": "git://github.com/curiosity26/react-style-engine.git"
},
"keywords": [
"react",
"css",
"shadow",
"dom",
"webcomponents"
],
"author": "Alex Boyce <curiosity26@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/curiosity26/react-style-engine/issues"
},
"homepage": "https://github.com/curiosity26/react-style-engine#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-typescript": "^7.10.4",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.43",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-eslint": "^10.1.0",
"babel-plugin-const-enum": "^1.0.1",
"babel-preset-minify": "^0.5.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-shadow": "^18.1.0",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-shadow": "^18.1.0"
},
"optionalDependencies": {
"construct-style-sheets-polyfill": "^2.3.5"
},
"files": [
"dist/**/*"
],
"dependencies": {}
}