-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 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
{
"name": "@pulsar/core",
"version": "0.0.26",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"private": false,
"repository": "git://github.com/elforastero/pulsar-core.git",
"author": "Eugene Dzhumak",
"keywords": [
"react",
"react-native",
"react-native-web",
"stylesheet",
"dynamic stylesheet",
"pulsar ui",
"pulsar core"
],
"scripts": {
"test": "jest",
"size": "size-limit",
"build": "rm -rf ./dist && tsc --outDir dist",
"build-size": "yarn build && rm -rf size_dist && cp -r dist size_dist && babel size_dist/config.js --out-dir size_dist",
"release": "yarn build && standard-version"
},
"files": [
"dist"
],
"sideEffects": false,
"peerDependencies": {
"babel-plugin-preval": "^5.0.0",
"react": "^17.0.1",
"react-native": "^0.63.4"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@size-limit/preset-small-lib": "^5.0.3",
"@spaceship/eslint-config": "^0.2.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/pubsub-js": "^1.8.2",
"@types/react": "^17.0.19",
"@types/react-native": "^0.64.13",
"babel-jest": "^27.1.0",
"babel-plugin-preval": "^5.0.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "^0.65.1",
"react-test-renderer": "^17.0.2",
"size-limit": "^5.0.3",
"standard-version": "^9.3.1",
"typescript": "^4.4.2"
},
"dependencies": {
"lilconfig": "^2.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"size-limit": [
{
"path": "size_dist/index.js"
}
]
}