-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 836 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 836 Bytes
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
{
"name": "cs-wiki",
"version": "1.0.2",
"description": "A JSON form of Wikipedia's Glossary of Computer Science. Definition lookup and word of the day.",
"repository": {
"type": "git",
"url": "https://github.com/buckldav/cs-wiki.git"
},
"main": "index.ts",
"scripts": {
"build": "node ./src/main.js && tsc --build && cp -rf dist/* . && rm -rf dist",
"test": "ts-mocha ./tests/index.test.ts",
"prepare": "husky install"
},
"keywords": [
"computer science",
"cs",
"json",
"glossary",
"vocabulary",
"wiki",
"word a day",
"word",
"word of the day"
],
"author": "David Buckley",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.1.0",
"husky": "^7.0.4",
"puppeteer": "^13.5.2",
"ts-mocha": "^9.0.2",
"typescript": "^4.6.3"
}
}