-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
59 lines (59 loc) · 1.29 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
{
"name": "@djot/djot",
"sideEffects": false,
"version": "0.3.2",
"engines": {
"node": ">=17.0.0"
},
"description": "Conversion library for the djot light markup language",
"license": "MIT",
"author": "John MacFarlane",
"keywords": [
"markup",
"djot"
],
"main": "./dist/djot.js",
"module": "./lib/index.js",
"exports": {
".": {
"require": "./dist/djot.js",
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"bin": {
"djot": "./lib/cli.js"
},
"man": [
"./doc/djot.1"
],
"types": "./types/index.d.ts",
"scripts": {
"build": "tsc && webpack",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "jest",
"bench": "npm run build && node ./bench/bench.js"
},
"files": [
"./dist/djot.js",
"./lib/*.js",
"./types/*.d.ts",
"./doc/djot.1"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"benchmark": "^2.1.4",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"typescript-language-server": "^3.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}