-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "rho",
"version": "1.0.0-beta.4",
"description": "Extensible semantic markup language",
"main": "out/main/index.js",
"scripts": {
"clean": "rm -rf out/",
"dev": "npm run clean && tsc -w",
"dev:test": "NODE_ENV=test mocha -w --opts=./mocha.opts",
"check": "eslint . --ext=.js,.ts",
"test": "NODE_ENV=test mocha --opts=./mocha.opts",
"build": "npm run clean && tsc",
"preversion": "npm run check && npm run build && npm test",
"postversion": "npm publish && git push --tags"
},
"pre-commit": [
"check"
],
"files": [
"out/main/**/*"
],
"keywords": [
"markdown",
"text",
"html",
"semantic",
"markup",
"text processor"
],
"author": "Boris Okunskiy",
"license": "ISC",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/marked": "^0.7.2",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-recommended": "^4.0.0",
"glob": "^7.1.6",
"marked": "^0.8.0",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"pretty": "^2.0.0",
"typescript": "^3.7.4"
},
"dependencies": {}
}