This repository has been archived by the owner on Jun 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.36 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
{
"name": "@borderlesslabs/atoms",
"version": "0.2.4",
"description": "Atomic CSS objects for JavaScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist.es2015/index.js",
"jsnext:main": "dist.es2015/index.js",
"sideEffects": false,
"files": [
"dist/",
"dist.es2015/"
],
"scripts": {
"prettier": "prettier --write",
"lint": "tslint \"src/**/*\" --project tsconfig.json",
"format": "npm run prettier -- README.md \"src/**/*.{js,jsx,ts,tsx}\"",
"build": "rimraf dist/ dist.es2015/ && tsc && tsc -P tsconfig.es2015.json",
"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/BorderlessLabs/atoms.git"
},
"keywords": [
"css",
"tailwind",
"atomic",
"styles"
],
"author": "Blake Embrey <hello@blakeembrey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BorderlessLabs/atoms/issues"
},
"homepage": "https://github.com/BorderlessLabs/atoms",
"size-limit": [
{
"path": "dist/index.js",
"limit": "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}": [
"npm run prettier",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.4.5",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@types/react": "^16.7.5",
"@types/react-color": "^3.0.1",
"@types/react-dom": "^16.0.9",
"husky": "^4.0.1",
"jest": "^25.2.7",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-free-style": "^10.0.2",
"rimraf": "^3.0.0",
"size-limit": "^4.4.5",
"ts-jest": "^25.3.1",
"ts-loader": "^6.1.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.16.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2"
}
}