-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.74 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
{
"name": "@seasonedsoftware/ui",
"version": "0.0.2",
"description": "LIBRARY_NAME description",
"author": "SeasonedSoftware",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SeasonedSoftware/ui.git"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"lint": "node_modules/.bin/eslint --max-warnings 0 .",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "npm run build:types && npm run build:js",
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "yarn build && cd example/ && yarn build && cd ../",
"deploy": "gh-pages -d example/build",
"release:login": "npm adduser",
"release": "npm version",
"postrelease": "npm publish && git push --tags && git push"
},
"peerDependencies": {
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.20",
"@seasonedsoftware/utils": "^0.0.2",
"lodash": "^4.17.15",
"prop-types": "15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.20",
"@seasonedsoftware/eslint-config": "^1.0.0",
"@seasonedsoftware/utils": "^0.0.2",
"@types/lodash": "^4.14.136",
"@types/react": "^16.8.21",
"@types/react-dom": "^16.8.4",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"lodash": "^4.17.15",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^3.0.1",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^3.5.3"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/SeasonedSoftware/ui/issues"
},
"homepage": "https://github.com/SeasonedSoftware/ui#readme",
"directories": {
"doc": "docs",
"example": "example"
},
"keywords": [
"react"
]
}