-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "pu2",
"version": "0.0.83",
"description": "Greg's utils",
"keywords": [],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/gregolai/pu2"
},
"author": "Gregory Dalton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregolai/pu2/issues"
},
"engines": {
"node": ">=12.10",
"npm": ">=6.11"
},
"scripts": {
"build:gen:style-props": "node ./src/style-lib/internal/style-props.gen.cjs",
"build:cjs": "rm -rf dist/cjs && tsc -p tsconfig.publish.json --module commonjs --outDir dist",
"build": "npm run build:gen:style-props && rm -rf dist && npm run build:cjs",
"format": "prettier src/**/* --write",
"postrelease": "npm run release:github && npm run release:npm",
"release:github": "git push --no-verify --follow-tags origin master",
"release:npm": "npm publish ./dist",
"release:preflight": "npm pack ./dist --dry-run",
"release": "standard-version",
"start": "cd playground && npm start",
"test:ci": "npm run test -- --ci",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"test": "jest --env=jsdom"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run format && npm run test -- --bail --onlyChanged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,css}": [
"prettier --write",
"git add"
]
},
"standard-version": {
"scripts": {
"prerelease": "npm run build",
"prebump": "",
"postbump": "node postbump.cjs",
"precommit": "",
"postcommit": "",
"pretag": "",
"posttag": ""
},
"skip": {
"changelog": true
}
},
"peerDependencies": {
"react": ">=17.0",
"react-dom": ">=17.0"
},
"dependencies": {
"lodash": "^4.17.21",
"react": ">=17.0",
"react-dom": ">=17.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.178",
"@types/node": "^16.3.2",
"@types/prettier": "^2.3.2",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.11",
"husky": "^7.0.2",
"jest": "^27.1.0",
"jest-localstorage-mock": "^2.4.17",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}