-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
{
"name": "citation-robot",
"version": "1.0.0",
"description": "Scripts for automating citations reports",
"main": "dist/index.js",
"scripts": {
"slate": "rm -r node_modules && npm install",
"build": "npx webpack",
"run": "node dist/index.js",
"dev": "nodemon --watch src --watch input --ext ts,js,json --exec npm run build \\&\\& npm run run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CCMi-FIT/Citation-Robot.git"
},
"author": "Robert Pergl",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CCMi-FIT/Citation-Robot/issues"
},
"homepage": "https://github.com/CCMi-FIT/Citation-Robot#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/jsonexport": "^3.0.2",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.6.0",
"got": "^12.0.1",
"jsonexport": "^3.2.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.15",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpackbar": "^5.0.2"
}
}