-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "@tpr/theming",
"version": "3.0.0",
"description": "TPR Theming components",
"author": "David Alekna <[email protected]>",
"license": "MIT",
"main": "./lib/index.cjs.js",
"module": "./lib/index.js",
"typings": "./lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "https://github.com/thepensionsregulator/react-components.git"
},
"bugs": {
"url": "https://github.com/thepensionsregulator/react-components/issues"
},
"homepage": "https://github.com/thepensionsregulator/react-components#readme",
"keywords": [
"tpr"
],
"scripts": {
"prepare": "yarn build",
"copycss": "copyfiles -u 1 \"./src/**/*.{css,scss,woff2}\" \"./lib/\" && echo @tpr/theming css files copied.",
"bundle": "cross-env-shell \"../../node_modules/.bin/rollup\" -c rollup.config.js",
"build": "tsc -b && yarn copycss",
"clean": "rimraf lib"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"dependencies": {
"govuk-frontend": "^3.14.0",
"normalize.css": "^8.0.1",
"tslib": "^2.1.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"cross-env": "^7.0.3",
"node-sass": "^5.0.0",
"react": "file:../../node_modules/react",
"react-dom": "file:../../node_modules/react-dom"
},
"gitHead": "57aec9c9de22596d6343bae07eb6b198322a0bee"
}