-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"name": "display-primitives",
"version": "0.0.10",
"description": "The missing `display` primitives (`<flex>`, `<grid>`, etc)",
"homepage": "https://github.com/chronstruct/display-primitives",
"main": "src/index.js",
"scripts": {
"lint": "prettier --check src",
"lint:fix": "prettier --write src",
"test": "jest",
"test-fixtures": "jest __tests__/fixtures.js",
"test-playground": "jest __tests__/playground.js",
"prepare": "husky install",
"release": "npm version patch && git push && npm publish"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write src"
],
"*.css": [
"prettier --write src"
]
},
"files": [
"src/",
"loader.js"
],
"types": "src/index.d.ts",
"keywords": [
"chronstruct",
"primitives",
"display",
"flex",
"grid",
"babel"
],
"author": "Kyle Poole <kyle@chronstruct.com> (http://kylpo.com/)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/parser": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/types": "^7.9.5",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"ast-pretty-print": "^2.0.1",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-tester": "^9.0.1",
"husky": "^8.0.1",
"jest": "^26.0.1",
"lint-staged": "^13.0.1",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {}
}