This repository was archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.68 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.68 KB
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
{
"name": "remote-text",
"version": "1.3.7",
"description": "",
"main": "index.js",
"files": [
"lib",
"es"
],
"scripts": {
"build": "rm -rf lib && rm -rf es && npm run compile",
"ci": "npm run lint && npm run build && npm test && npm version patch",
"compile": "npm run compile:cjs && npm run compile:es",
"compile:cjs": "tsc -p tsconfig.prod.json",
"compile:es": "tsc -p tsconfig.prod.es.json",
"test-all": "npm run test && npm run test:es",
"test": "npm run test:cjs && npm run test:es",
"test:cjs": "mocha 'test/**/*.ts*' --require=ts-node/register --require mocha-clean",
"test:es": "export TS_NODE_PROJECT=tsconfig.es.json && mocha 'test/**/*.ts*' --require=ts-node/register --require mocha-clean",
"watch": "tsc -p tsconfig.prod.json -w",
"coverage": "nyc --extension=.ts --extension=.tsx --include=src/**/*.ts* --all --reporter=html mocha --require=ts-node/register --require source-map-support/register --recursive 'test/**/*.ts*'",
"check-coverage": "rm -rf .nyc_output && npm run coverage && nyc check-coverage",
"publish-local": "npm publish --registry=http://localhost:4873 --force",
"lint": "tslint {src,test}/**/*.ts*",
"fix": "npm run lint -- --fix",
"cd": "standard-version -m \"chore(release): %s [skip ci]\" && git push --follow-tags origin master && npm publish",
"lock": "git add 'package.json' 'package-lock.json' && (git diff-index --quiet HEAD || git commit -m 'Lock')",
"codecov": "nyc report --reporter=json --reporter=html && codecov -f coverage/*.json"
},
"peerDependencies": {
"lodash": "*",
"mobx": "*",
"mobx-react": "*",
"react": "*",
"react-dom": "*",
"tsla-util": "*",
"medium-editor": "*",
"sanitize-html": "*"
},
"optionalDependencies": {
"mongodb": "*"
},
"devDependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.123",
"@types/medium-editor": "^5.0.3",
"@types/mocha": "^5.2.6",
"@types/mongodb": "^3.1.25",
"@types/node": "^11.13.7",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/sanitize-html": "^1.18.3",
"chai": "^4.2.0",
"codecov": "^3.3.0",
"lodash": "^4.17.11",
"medium-editor": "^5.23.3",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"mocha": "^6.1.4",
"mocha-clean": "^1.0.0",
"nyc": "^14.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sanitize-html": "^1.20.1",
"standard-version": "^5.0.2",
"ts-node": "^8.1.0",
"tsla-util": "^0.15.0",
"tslib": "^1.9.3",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"author": "",
"license": "ISC"
}