-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 893 Bytes
/
package.json
File metadata and controls
37 lines (36 loc) · 893 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
36
37
{
"name": "hacker-quotes",
"version": "1.0.0",
"description": "A collection of CS/Programming related quotes",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/hacker-quotes.git"
},
"homepage": "https://github.com/tiaanduplessis/hacker-quotes",
"bugs": "https://github.com/tiaanduplessis/hacker-quotes/issues",
"author": {
"name": "Tiaan",
"email": "tiaanduplessis@hotmail.com",
"url": "tiaanduplessis.co.za"
},
"scripts": {
"start": "npm run dev",
"dev": "npm test -- -w",
"lint": "standard --verbose",
"lint:fix": "standard --fix --verbose",
"pretest": "npm run lint:fix",
"test": "mocha"
},
"keywords": [
"quotes,",
"json",
"hacker-quotes"
],
"dependencies": {},
"devDependencies": {
"mocha": "^3.2.0",
"standard": "^8.6.0"
}
}