-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "ffc-node-mysql",
"version": "1.0.0",
"description": "A MySQL storage driver for ffc-node",
"main": "dist/app/index.js",
"types": "dist/app/index.d.ts",
"directories": {
"test": "test",
"lib": "src"
},
"engines": {
"node": "8.1.2"
},
"files": [
"dist/",
"src/",
"test/",
".editorconfig",
"gulpfile.js",
"tsconfig.json"
],
"scripts": {
"test": "NODE_ENV=test mocha dist/test",
"build": "gulp",
"preversion": "gulp && npm test",
"postversion": "git checkout master && git pull && git merge develop"
},
"author": "Dominic Bartl",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/freshfox/ffc-node-mysql.git"
},
"bugs": {
"url": "https://github.com/freshfox/ffc-node-mysql/issues"
},
"homepage": "https://github.com/freshfox/ffc-node-mysql#readme",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.7",
"@types/should": "^8.3.0",
"ffc-node": "^5.0.4",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-tsb": "^2.0.3",
"mocha": "^3.4.2",
"should": "^11.2.1",
"ts-node": "^3.2.0",
"typescript": "^2.4.1"
},
"peerDependencies": {
"ffc-node": "^5.0.4"
},
"dependencies": {
"inversify": "^4.2.0",
"reflect-metadata": "^0.1.10"
}
}