-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 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
{
"name": "@ecency/render-helper",
"version": "2.2.36",
"description": "Markdown+Html Render helper",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "jest",
"test:watch": "npm test -- --watch",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint ./src/**/*.ts",
"build": "npm run clean && tsc && gulp",
"prepublish": "npm run test && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ecency/ecency-render-helper"
},
"author": "Ecency <hello@ecency.com>",
"license": "MIT",
"homepage": "https://github.com/ecency/ecency-render-helper",
"devDependencies": {
"@types/he": "^1.1.1",
"@types/jest": "^26.0.20",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.14.31",
"@types/remarkable": "^2.0.1",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"browserify": "^17.0.0",
"cross-env": "^5.1.3",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"jest": "^26.6.3",
"nyc": "^13.3.0",
"rimraf": "^2.7.1",
"ts-jest": "^26.5.1",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"tsify": "^5.0.2",
"typescript": "^4.1.5",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"he": "^1.2.0",
"lolight": "^1.4.0",
"lru-cache": "^6.0.0",
"multihashes": "0.4.13",
"path": "^0.12.7",
"querystring": "^0.2.0",
"react-native-crypto-js": "^1.0.0",
"remarkable": "^2.0.1",
"url": "^0.11.0",
"xmldom": "^0.5.0",
"xss": "^1.0.9"
}
}