-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 991 Bytes
/
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
{
"name": "@rcp/use.forceupdate",
"author": "余聪",
"description": "forceUpdate like legacy react",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"module": "dist/es",
"main": "dist/cjs/index.js",
"typings": "dist/es/index.d.ts",
"scripts": {
"dist": "npm run dist:cjs && npm run dist:es",
"dist:cjs": "rm -rf dist/cjs && tsc --module commonjs --outDir dist/cjs",
"dist:es": "rm -rf dist/es && tsc --module ES6 --outDir dist/es",
"test": "npx jest",
"dev": "npm run dist -- -w",
"version": "npm run dist && npm run doc",
"doc": "documentation --markdown-toc=false readme dist/es/index.js -a public -s \"API\" && git add README.md"
},
"repository": {
"directory": "packages/use.forceupdate",
"type": "git",
"url": "git+https://github.com/imcuttle/rcp.git"
},
"keywords": [
"余聪",
"use",
"forceupdate",
"react",
"rcp"
],
"engines": {
"node": ">=6"
},
"version": "1.2.1"
}