-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "markable",
"version": "0.0.7",
"description": "Make non-English Markdown plain text markable",
"main": "src/markable.js",
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter html --reporter text npm test",
"build": "npm run rollup && npm run minify",
"rollup": "npm run rollup:umd && npm run rollup:esm",
"rollup:umd": "rollup -c rollup.config.js",
"rollup:esm": "rollup -c rollup.config.esm.js",
"minify": "uglifyjs lib/markable.js -cm --comments /Copyright/ -o markable.min.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run coverage",
"pre-push": "npm run coverage",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hbhde/markable.git"
},
"keywords": [
"markdown",
"markup",
"html"
],
"author": {
"name": "Guxi11"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hbhde/markable/issues"
},
"homepage": "https://github.com/hbhde/markable#readme",
"devDependencies": {
"@babel/preset-env": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"rollup": "^2.3.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-license": "^2.0.0",
"uglify-js": "^3.8.1"
}
}