-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 1.97 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
{
"name": "design-system-utils",
"version": "1.5.0",
"description": "Design-system utils for working with JS-in-CSS",
"main": "build/cjs.js",
"module": "build/es.js",
"types": "build/index.d.ts",
"repository": "https://github.com/mrmartineau/design-system-utils",
"directories": {
"example": "example"
},
"size-limit": [
{
"path": "build/cjs.js",
"limit": "1 KB"
},
{
"path": "build/es.js",
"limit": "1 KB"
}
],
"scripts": {
"presize": "npm run build",
"size": "size-limit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "NODE_ENV=production rollup -c",
"watch": "rollup -c -w",
"prepublishOnly": "npm run build",
"prelint": "npm run format:all",
"lint": "tslint ./src/**/*.ts",
"format:all": "prettier --write '{src,example}/**/*'"
},
"files": [
"build",
"src",
"readme.md",
"LICENSE"
],
"keywords": [
"css-in-js",
"glamorous",
"styled-components",
"emotion",
"styled-jsx",
"CSS"
],
"author": "Zander Martineau",
"license": "MIT",
"dependencies": {
"@ngard/tiny-get": "^1.2.2",
"dset": "^2.0.1"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^2.2.1",
"@types/jest": "^24.0.23",
"@types/prettier": "^1.18.4",
"@types/rollup": "^0.54.0",
"@types/typescript": "^2.0.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.27.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"rollup-plugin-uglify": "^6.0.3",
"size-limit": "^2.2.1",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "3.7.2"
}
}