-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@diaspora/dev-adapter-base",
"version": "0.3.4",
"description": "🔨 FOR DEVELOPMENT PURPOSE ONLY! An abstract adapter for @diaspora/diaspora, that should be extended by all other adapters.",
"main": "index.js",
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' '__tests__/**/*.ts' -p tsconfig.json",
"lint:fix": "tslint -t codeFrame 'src/**/*.ts' '__tests__/**/*.ts' -p tsconfig.json --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "npm run lint && npm run test:coverage -- --no-cache",
"build": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diaspora-orm/dev-adapter-base.git"
},
"keywords": [
"diaspora",
"adapter",
"node",
"browser",
"orm",
"db",
"collection",
"database",
"query",
"object"
],
"author": {
"name": "Gerkin",
"email": "[email protected]",
"url": "https://www.gerkindevelopment.net"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/diaspora-orm/dev-adapter-base/issues"
},
"homepage": "https://github.com/diaspora-orm/dev-adapter-base#readme",
"devDependencies": {
"@diaspora/dev-tslint": "^1.0.3",
"@types/jest": "^24.0.6",
"@types/lodash": "^4.14.121",
"jest": "^24.1.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"@diaspora/dev-typings": "~0.3.4",
"lodash": "^4.17.11",
"sequential-event": "^0.4.5"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src",
"<rootDir>/__tests__"
],
"moduleFileExtensions": [
"js",
"ts"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json",
"diagnostics": false
}
}
}
}