-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 2.84 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
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-free-style",
"version": "11.1.0",
"description": "Make React components easier and more maintainable by using JavaScript with Free Style",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist.es2015/index.js",
"sideEffects": false,
"jsnext:main": "dist.es2015/index.js",
"files": [
"dist/",
"dist.es2015/"
],
"scripts": {
"example": "cd example && webpack-dev-server --config webpack.js",
"prettier": "prettier --write",
"lint": "tslint \"src/**/*\" --project tsconfig.json",
"format": "npm run prettier -- \"{,src/**/,example/**/}*.{js,jsx,ts,tsx,json,css,md,yml,yaml}\"",
"build": "rimraf dist/ dist.es2015/ && tsc && tsc -P tsconfig.es2015.json",
"bench:hash": "ts-node benchmarks/hash.ts",
"bench:perf": "ts-node benchmarks/perf.ts",
"specs": "jest --coverage",
"test": "npm run build && npm run lint && npm run specs && npm run size",
"size": "size-limit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/react-free-style.git"
},
"keywords": [
"style",
"css",
"object",
"react",
"inline"
],
"author": "Blake Embrey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/react-free-style/issues"
},
"homepage": "https://github.com/blakeembrey/react-free-style",
"size-limit": [
{
"path": "dist/index.js",
"limit": "2.5 kB"
}
],
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,yml,yaml}": "npm run prettier"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.0.2",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^17.0.0",
"html-webpack-plugin": "^4.0.2",
"husky": "^4.2.3",
"jest": "^26.0.1",
"lint-staged": "^10.0.8",
"prettier": "^2.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.0",
"size-limit": "^4.0.2",
"ts-jest": "^26.4.4",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.16.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "*"
},
"dependencies": {
"csstype": "^3.0.6",
"free-style": "^4.1.0"
}
}