-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "@brightcove/typed-immutable-proptypes",
"version": "0.1.4",
"description": "React prop-types for typed-immutable types",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"build:all": "npm run build && npm run jsdoc",
"pretest": "npm run lint",
"test": "nyc --reporter html --reporter text mocha",
"posttest": "kacl lint",
"report": "nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint src test",
"jsdoc": "jsdoc2md --files src/index.js > docs/API.md",
"prepublishOnly": "npm run build",
"preversion": "kacl prerelease",
"version": "kacl release && git add CHANGELOG.md",
"postversion": "git push && gh-release"
},
"repository": {
"type": "git",
"url": "https://github.com/brightcove/typed-immutable-proptypes"
},
"author": "Ted Janeczko <tjaneczko@brightcove.com>",
"license": "Apache-2.0",
"dependencies": {
"prop-types": "^15.6.2"
},
"devDependencies": {
"@brightcove/kacl": "^0.1.11",
"@brightcove/typed-immutable-extensions": "^0.1.2",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^6.2.2",
"gh-release": "^4.0.3",
"immutable": "^3.8.2",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"typed-immutable": "^0.1.2"
},
"peerDependencies": {
"@brightcove/typed-immutable-extensions": "^0.1.2",
"typed-immutable": "^0.1.2"
},
"files": [
"lib",
"README.md",
"LICENSE"
]
}