-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (60 loc) · 1.76 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
{
"name": "source-code-tokenizer",
"version": "0.1.5",
"description": "Source code tokenizer powered by vscode",
"bin": {
"tokenizer": "./bin/tokenizer"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"create": "npm run build && npm run test",
"compile": "tsc -p src",
"publish:local": "sh ./scripts/npmPublish.sh",
"test": "node ./bin/tokenizer target.js",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"verify": "npm-run-all clean compile"
},
"dependencies": {
"builtin-modules": "^3.1.0",
"commander": "^6.2.0",
"text-table": "0.2.0",
"tslib": "^2.0.3",
"vscode-textmate": "^5.2.0",
"onigasm": "^2.2.5",
"v8-compile-cache": "^2.2.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=10.15.0"
},
"repository": {
"type": "git",
"url": "git://github.com/devreplay/source-code-tokenizer.git"
},
"keywords": [
"tokenizer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/devreplay/source-code-tokenizer/issues"
},
"homepage": "https://github.com/devreplay/source-code-tokenizer#readme",
"author": "Yuki Ueda",
"private": false
}