-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.24 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": "structured-source",
"version": "4.0.0",
"description": "Provides StructuredSource and functionality for converting range and loc vice versa.",
"keywords": [
"location",
"range",
"abstract",
"syntax",
"tree"
],
"homepage": "https://github.com/textlint/structured-source",
"bugs": {
"url": "https://github.com/textlint/structured-source/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/structured-source.git"
},
"license": "BSD-2-Clause",
"author": "Yusuke SUZUKI",
"maintainers": [
{
"name": "Yusuke SUZUKI",
"email": "[email protected]",
"web": "http://github.com/Constellation"
}
],
"main": "lib/structured-source.js",
"types": "lib/structured-source.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"test": "mocha \"test/**/*.{js,ts}\"",
"watch": "tsc -p . --watch"
},
"dependencies": {
"boundary": "^2.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]"
}