-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1022 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.valuesstate",
"author": "imcuttle",
"description": "The useful methods exported for values state",
"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": {
"type": "git",
"url": "git+https://github.com/imcuttle/rcp.git"
},
"keywords": [
"imcuttle",
"use",
"valuesstate",
"react",
"rcp"
],
"engines": {
"node": ">=6"
},
"version": "2.0.0",
"gitHead": "f28ececd4b2fab80551292239b568841c895177f"
}