-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 825 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 825 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
{
"name": "@tiaanduplessis/routify",
"version": "1.0.1",
"description": "Nice little Trie-based HTTP router",
"license": "MIT",
"repository": {
"url": "https://github.com/tiaanduplessis/routify",
"type": "git"
},
"homepage": "https://github.com/tiaanduplessis/routify",
"bugs": "https://github.com/tiaanduplessis/routify",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"format": "prettier-standard index.js",
"start": "npm run test",
"precommit": "npm test",
"pretest": "npm run format"
},
"author": "tiaanduplessis <tiaanduplessis@hotmail.com>",
"devDependencies": {
"husky": "^0.14.3",
"jest": "^20.0.4",
"prettier-standard": "^6.0.0"
},
"dependencies": {
"fastseries": "^1.7.2",
"routington": "^1.0.3"
}
}