-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "hookejs",
"version": "2.0.0-rc-1",
"description": "An open source plagiarism detector and autocitation built in node.",
"main": "lib/index.js",
"scripts": {
"test": "npm run build && node lib/test.js",
"format": "npx prettier --write **/*.{ts,json}",
"build": "tsc && cp src/*.js lib/",
"all": "npm run format && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hhhhhhhhhn/HookeJs.git"
},
"author": "hhhhhhhhhn",
"license": "MIT",
"bugs": {
"url": "https://github.com/oekshido/HookeJs/issues"
},
"homepage": "https://github.com/oekshido/HookeJs#readme",
"dependencies": {
"snowball-stemmers": "^0.6.0"
},
"devDependencies": {
"@swc/core": "^1.3.85",
"@types/node": "^18.14.1",
"@types/snowball-stemmers": "^0.6.0",
"itworksjs": "^1.1.1",
"prettier": "^2.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"bin": {
"hooke": "./cli.js"
}
}