-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-table-doc",
"version": "1.0.1",
"main": "index.js",
"description": "The component about react component document view",
"author": "imcuttle",
"scripts": {
"test": "jest",
"prepublishOnly": "npm test",
"build:less": "lessc src/style.less src/style.css --source-map",
"build": "npm run build:less && rimraf lib && babel src -D -d lib",
"dev": "npm run build -- -w",
"example": "gojs -i examples/index.js -p 9888",
"example:build": "gojs -b examples/index.js",
"prepare": "npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"version": "npm run changelog"
},
"files": [
"lib/",
"index.js",
"loader/"
],
"keywords": [
"react",
"component",
"document",
"react-document",
"react-docgen",
"react-table-doc",
"imcuttle"
],
"license": "MIT",
"repository": "imcuttle/react-table-doc",
"jest": {
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@commitlint/cli": "^7.1.1",
"@commitlint/config-conventional": "^7.1.1",
"@moyuyc/husky": "^1.0.0",
"@types/jest": "^23.1.3",
"babel-cli": "^6.26.0",
"babel-jest": "^23.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"conventional-changelog-cli": "^2.0.5",
"go-js": "^1.3.12",
"jest": "^23.2.0",
"less": "^3.0.4",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"prefix-classname": "^1.0.1",
"highlight.js": "^10.2.0",
"loader-utils": "^2.0.0",
"marked": "^1.1.1",
"react-docgen": "^5.3.0",
"tiny-i18n": "^1.1.2"
},
"husky": {
"installType": "append",
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}