-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "satchel-css",
"version": "1.4.0",
"description": "A little bag of CSS-in-JS superpowers",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"develop": "rollup -c -w",
"build": "rollup -c",
"test": "jest",
"clean": "rm -rf ./lib",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peppercornstudio/satchel.git"
},
"keywords": [
"css-in-js",
"emotion",
"styled-components",
"css-utilities",
"css",
"jss",
"react",
"functional-css"
],
"author": "Peppercorn Studio (https://peppercornstudio.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/peppercornstudio/satchel/issues"
},
"homepage": "https://satchel.style",
"dependencies": {
"@csstools/normalize.css": "^10.1.0",
"color-name": "^1.1.4",
"css-unit-converter": "^1.1.1",
"cssremedy": "0.1.0-beta.2",
"modern-normalize": "^0.6.0",
"parse-unit": "^1.0.1"
},
"devDependencies": {
"@atomico/rollup-plugin-import-css": "^1.0.3",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/jest": "^25.2.1",
"@types/parse-unit": "^1.0.1",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"babel-plugin-remove-template-literals-whitespace": "^1.0.2",
"jest": "^25.5.3",
"rollup": "^2.7.6",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^3.8.3"
}
}