forked from plumpstack/plump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "plump",
"version": "0.27.2",
"description": "Pluggable Datastore",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "gulp maketest && mocha testbuild/*.spec.js && gulp testclean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plumpstack/plump.git"
},
"keywords": ["typescript", "orm", "datastore", "activerecord"],
"author": "Eric Eslinger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/plumpstack/plump/issues"
},
"homepage": "https://github.com/plumpstack/plump#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "7.1.0",
"@types/core-js": "^0.9.43",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"chai": "^4.1.2",
"del": "^3.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^7.0.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-typescript": "^3.2.2",
"mocha": "^3.5.3",
"tslint": "^5.7.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.4.2"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"deep-equal": "^1.0.1",
"merge-options": "^1.0.0",
"rxjs": "^5.4.0"
}
}