-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.3 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
{
"name": "kremling",
"version": "2.2.0",
"description": "Embarrassingly simple css for React",
"main": "lib/kremling.js",
"repository": "git@github.com:CanopyTax/kremling.git",
"author": "Joel Denning <joel.denning@canopytax.com>",
"license": "Apache-2.0",
"types": "./src/kremling.d.ts",
"scripts": {
"prepublish": "yarn build",
"build": "rimraf lib && yarn compile",
"watch-build": "yarn compile --watch",
"compile": "babel src --out-dir lib --source-maps --ignore test.js",
"test": "jest --config jest.json",
"coverage": "jest --config jest.json --coverage",
"watch-tests": "jest --config jest.json --watch"
},
"dependencies": {
"prop-types": "^15"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"packageManager": "yarn@3.6.4"
}