-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1023 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
37
38
39
40
{
"name": "@schnapps/core",
"version": "0.1.23",
"description": "Schnapps is a node.js a library that simplifies your backend code",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"scripts": {
"tsc": "tsc",
"test": "./node_modules/mocha/bin/mocha ./test/index.js",
"test:nyc": "nyc --reporter=html ./node_modules/mocha/bin/mocha ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmaftuleac/schnapps-core.git"
},
"keywords": [
"schnapps",
"schnapps-core",
"express",
"controller",
"chain"
],
"author": "Liviu Maftuleac <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmaftuleac/schnapps-core"
},
"homepage": "https://github.com/lmaftuleac/schnapps-core#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"typescript": "^3.8.3"
},
"directories": {
"test": "test"
},
"dependencies": {}
}