-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.91 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "doov-react",
"version": "0.1.6",
"desciption": "HTML Renderer with React for doov-ts",
"homepage": "https://doov.org",
"license": "Apache-2.0",
"maintainers": [
{
"name": "Suxue Li",
"email": "[email protected]",
"url": "https://github.com/suxueli"
},
{
"name": "Ozan Gunalp",
"email": "[email protected]",
"url": "https://github.com/ozangunalp"
}
],
"repository": {
"type": "git",
"url": "git://github.com/doov-org/doov-ts-react.git"
},
"source": "src/doov-react.tsx",
"main": "dist/doov-react.js",
"umd:name": "DoovReact",
"umd:main": "dist/doov-react.umd.js",
"module": "dist/doov-react.es.js",
"types": "dist/types/doov-react.d.ts",
"files": [
"dist"
],
"scripts": {
"watch": "rollup -c rollup.config.ts -w",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts --environment INCLUDE_DEPS,BUILD:production && typedoc --out docs --mode file src",
"test": "jest --watch",
"test-ci": "cross-env NODE_ICU_DATA=node_modules/full-icu jest test --coverage --ci --reporters=default --reporters=jest-junit && prettier --check \"{./src/**/*.tsx,./src/**/*.ts,./src/**/*.json}\" && eslint \"./src/**\"",
"prepare": "npm run build",
"prepublishOnly": "npm run test-ci",
"lint": "eslint \"./src/**\"",
"prettier": "prettier --write \"{./src/**/*.tsx,./src/**/*.ts,./src/**/*.json}\""
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@types/jest": "24.0.12",
"@types/moment": "2.13.0",
"@types/rollup-plugin-json": "3.0.2",
"@types/rollup-plugin-sourcemaps": "0.4.2",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"cross-env": "5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-prettier": "3.0.1",
"full-icu": "1.3.0",
"husky": "2.2.0",
"jest": "24.8.0",
"jest-css-modules": "2.1.0",
"jest-junit": "6.4.0",
"jest-watch-typeahead": "0.3.1",
"prettier": "1.17.0",
"pretty-quick": "1.10.0",
"react-dom": "^16.0.0",
"rimraf": "2.6.3",
"rollup": "1.17.0",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-postcss": "2.4.1",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "0.22.0",
"ts-jest": "24.0.2",
"typedoc": "^0.15.4",
"typescript": "3.4.5"
},
"dependencies": {
"doov": "^0.11.0",
"react": "^16.0.0"
}
}