-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.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
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": "@code-dot-org/redactable-markdown",
"version": "0.10.0",
"description": "",
"main": "dist/main.js",
"bin": {
"normalize": "src/bin/normalize.js",
"parse": "src/bin/parse.js",
"redact": "src/bin/redact.js",
"render": "src/bin/render.js",
"restore": "src/bin/restore.js"
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --progress --colors --mode=development",
"build:demo": "webpack --config ./demo/webpack.config.js",
"lint": "eslint --ext .js src/ test/",
"test": "npm run lint && jest",
"test:unit": "jest test/unit",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "jest test/integration",
"test:integration:watch": "npm run test:integration -- --watch",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]:code-dot-org/redactable-markdown.git"
},
"author": "Code.org <[email protected]> (http://code.org)",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"webpack": "^5.90.3",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@code-dot-org/remark-plugins": "2.0.0",
"hast-util-sanitize": "^3.0.2",
"minimist": "^1.2.8",
"rehype-raw": "^5.1.0",
"rehype-sanitize": "^4.0.0",
"rehype-stringify": "^8.0.0",
"remark-parse": "^6.0.3",
"remark-redactable": "2.0.2",
"remark-rehype": "8.1.0",
"remark-stringify": "^8.1.1",
"unified": "^9.2.2",
"unist-util-select": "^3.0.4",
"xtend": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
}
}