-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 872 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
{
"name": "data-sorcerer",
"version": "0.0.2",
"description": "Query any data source using a common, fluent API",
"main": "lib/index",
"scripts": {
"test": "jest",
"compile-tests": "cd tests&&node ..\\node_modules\\ttypescript\\lib\\tsc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedro-pedrosa/data-sorcerer.git"
},
"keywords": [
"data-source",
"fluent-api"
],
"author": "Pedro Pedrosa",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedro-pedrosa/data-sorcerer/issues"
},
"homepage": "https://github.com/pedro-pedrosa/data-sorcerer#readme",
"dependencies": {
"ts-expressions": "0.0.8"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"ttypescript": "^1.5.5"
},
"jest": {
"testRegex": "(?:/tests/lib/[^\\./]*)\\.(?:jsx?)$"
}
}