-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "react-plantuml",
"version": "0.0.8",
"description": "a react component for plantuml",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm version patch && tsc",
"deploy": "yarn build && npm publish",
"test": "jest",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/*.js -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuankui/react-plantuml.git"
},
"keywords": [
"react",
"plantuml",
"uml"
],
"author": "yuankui <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuankui/react-plantuml/issues"
},
"homepage": "https://github.com/yuankui/react-plantuml",
"devDependencies": {
"@types/jest": "^24.0.18",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"jest": "^24.9.0",
"sleepjs": "^3.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^3.3.0",
"typescript": "^3.2.1"
},
"dependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"plantuml-encoder": "^1.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}