-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.27 KB
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
{
"name": "copyful",
"version": "0.1.15",
"description": "Copy management, simplified.",
"main": "lib/copyful.js",
"module": "lib/copyful.esm.js",
"types": "lib/copyful.d.ts",
"bin": {
"copyful": "./lib/cli.js"
},
"files": [
"lib"
],
"repository": "https://github.com/heydoctor/copyful",
"author": "Gerrymi Bernardo <gerrymibernardo@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"prepare": "install-peers",
"bump": "standard-version",
"format": "prettier --write '**/*.ts' '**/*.tsx'",
"test": "jest --verbose",
"test:watch": "jest --watchAll",
"build": "npm-run-all clean rollup",
"clean": "rimraf lib",
"rollup": "rollup -c",
"release": "npm-run-all test build cli:build bump",
"example": "parcel example/index.html",
"cli:run": "yarn ts-node -T -O '{\"module\": \"commonjs\"}' ./cli/copyful.ts",
"cli:build": "yarn tsc cli/**.ts --outDir lib --esModuleInterop"
},
"husky": {
"hooks": {
"pre-commit": "sh ./.githooks/no-master-commit-push && lint-staged",
"pre-push": "sh ./.githooks/no-master-commit-push"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
]
},
"peerDependencies": {
"react": ">16.8.0",
"react-dom": ">16.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-typescript": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.2",
"@types/lodash.set": "^4.3.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-plugin-typescript-to-proptypes": "^1.3.2",
"husky": "^4.2.5",
"install-peers-cli": "^2.2.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"rollup": "^2.10.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-typescript2": "^0.27.1",
"standard-version": "^8.0.0",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.1",
"typescript": "~3.7.2"
},
"dependencies": {
"contentful": "8.1.8",
"dotenv": "^8.2.0",
"lodash.set": "^4.3.2",
"yargs": "^15.3.1"
}
}