-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "nosequel",
"version": "0.0.4",
"main": "dist/index",
"typings": "dist/index",
"author": "Jesse Carter <[email protected]>",
"license": "MIT",
"description": "A modern TypeScript empowered ORM for NoSQL databases.",
"repository": {
"type": "git",
"url": "https://github.com/WonderPanda/NoSequel"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:e2e": "jest --config ./src/test/jest-e2e.json --forceExit",
"test:coverage": "jest --coverage"
},
"dependencies": {
"bluebird": "^3.5.1",
"cassandra-driver": "^3.5.0",
"reflect-metadata": "^0.1.12",
"ts-errorflow": "^2.0.0",
"async-file": "^2.0.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/cassandra-driver": "^3.4.0",
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"ts-jest": "^22.4.4",
"ts-node": "^6.0.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}