-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "@rcp/hoc.uncontrolled",
"author": "imcuttle",
"description": "The high order component for creating uncontrolled component",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"test": "npx jest",
"dist": "run-p --print-label \"dist:**\"",
"dist:es5": "tsc $TSC_OPTIONS --target es6",
"dist:es6": "rm -rf es6 && tsc $TSC_OPTIONS --target es6 --outDir es6",
"dev": "TSC_OPTIONS=-w npm run dist",
"prepublishOnly": "npm run dist && npm test",
"version": "npm run doc",
"doc": "documentation --markdown-toc=false readme index.js -a public -s \"API\" && git add README.md"
},
"keywords": [
"imcuttle",
"hoc",
"uncontrolled",
"react"
],
"engines": {
"node": ">=6"
},
"main": "index.js",
"typings": "index.d.ts",
"version": "3.0.0",
"dependencies": {
"@rcp/util.createlogger": "^2.0.0",
"@rcp/util.displayname": "^2.0.0",
"@rcp/util.iscompclass": "^2.0.0"
},
"gitHead": "f28ececd4b2fab80551292239b568841c895177f",
"repository": {
"type": "git",
"url": "git+https://github.com/imcuttle/rcp.git"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}