-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
52
53
54
55
56
{
"name": "typed-props",
"version": "1.4.0",
"description": "Facebook's PropTypes standalone extensible implementation for browser and server",
"main": "dist/node/index.js",
"types": "dist/types/",
"scripts": {
"build": "npm run build:web && npm run build:node && npm run build:checksum -- dist/*.js",
"build:node": "tsc --module commonjs --outDir dist/node",
"build:web": "npm run build:compile && npm run build:concat && npm run build:minify && rm -rf dist/src",
"build:compile": "tsc --module esnext --target esnext",
"build:concat": "rollup dist/src/index.js --format umd --name TypedProps --file dist/typed-props.js",
"build:minify": "babel-minify dist/typed-props.js -o dist/typed-props.min.js",
"build:checksum": "node bin/checksum.js dist > dist/checksum.txt",
"clean": "rm -rf dist",
"cov": "nyc -t coverage --reporter=html mocha test",
"test": "mocha test",
"prepublish": "npm run clean && npm run build"
},
"license": "MIT",
"devDependencies": {
"allow-publish-tag": "^1.0.1",
"babel-minify": "^0.5.0",
"mocha": "^6.2.0",
"nyc": "^13.3.0",
"rollup": "^1.7.3",
"should": "^11.2.1",
"typescript": "^3.3.4000"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/rumkin/typed-props.git"
},
"engines": {
"node": ">=8.0"
},
"keywords": [
"validator",
"validation",
"types",
"type-check",
"typed",
"values",
"prop-types"
],
"author": "rumkin",
"bugs": {
"url": "https://github.com/rumkin/typed-props/issues"
},
"homepage": "https://github.com/rumkin/typed-props#readme"
}