-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"author": "NicolaLovo",
"name": "reactjs-stylesheet",
"version": "1.0.9",
"description": "React.js Stylesheet object: a react-native-like and intuitive way to write jsx style in reactjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"sideEffects": false,
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/NicolaLovo/reactjs-stylesheet.git"
},
"keywords": [
"reactjs",
"stylesheet",
"css",
"styled-components",
"styled-jsx",
"inline-style"
],
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^27.5.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/react": "^18.0.9"
}
}