-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
{
"name": "remark-gfm-no-position-bug",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/azu/remark-gfm-no-position-bug",
"bugs": {
"url": "https://github.com/azu/remark-gfm-no-position-bug/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/remark-gfm-no-position-bug.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/remark-gfm-no-position-bug.js",
"module": "module/remark-gfm-no-position-bug.js",
"types": "lib/remark-gfm-no-position-bug.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/"
],
"scripts": {
"test": "ts-node-transpile-only src/index.ts",
"test2": "ts-node-transpile-only src/index2.ts",
"test3": "ts-node-transpile-only src/index3.ts",
"workaround": "ts-node-transpile-only src/workaround.ts",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"clean": "rimraf lib/ module/",
"prepublishOnly": "npm run clean && npm run build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"ts-node-test-register": "^9.0.1",
"typescript": "^4.2.4"
},
"dependencies": {
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"unified": "^9.2.1"
}
}