forked from maoberlehner/typescript-database-abstraction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 936 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
{
"name": "typescript-database-abstraction",
"version": "0.0.1",
"author": "Markus Oberlehner",
"homepage": "https://github.com/avalanchesass/typescript-database-abstraction",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/avalanchesass/typescript-database-abstraction"
},
"bugs": {
"url": "https://github.com/avalanchesass/typescript-database-abstraction/issues"
},
"devDependencies": {
"@types/glob": "^5.0.30",
"@types/js-yaml": "^3.5.29",
"@types/node": "^7.0.12",
"@types/sinon": "^2.1.2",
"ava": "^0.19.0",
"glob": "^7.1.1",
"js-yaml": "^3.8.2",
"sinon": "^2.1.0",
"tslint": "^5.0.0",
"typescript": "^2.2.2"
},
"scripts": {
"start": "yarn run clean && tsc -w",
"build": "yarn run clean && tsc",
"clean": "rm -Rf app",
"lint": "tslint 'src/**/*.ts'",
"test": "yarn run build && ava app/**/*.spec.js"
}
}