-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 848 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
{
"name": "bootstruct",
"version": "1.7.0",
"description": "Routing by structure. A name-convention web framework for Node.js.",
"main": "index.js",
"author": "Taitu Lizenbaum [email protected]",
"repository": {
"type": "git",
"url": "https://github.com/taitulism/Bootstruct"
},
"scripts": {
"dev": "npm test -- --watch --reporter nyan",
"test": "mocha --inspect ./tests/bootstruct.spec.js",
"lint": "eslint ./index.js ./src ./tests",
"check": "npm run lint && npm test",
"play": "node ./playground/play.js",
"preversion": "npm run check",
"postversion": "git push && git push --tags"
},
"keywords": [
"bootstruct",
"route",
"routing",
"structure",
"folder",
"app",
"restful",
"framework"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^5.2.0"
}
}