-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "updraft",
"version": "0.8.1",
"main": "dist/updraft.js",
"typings": "./dist/updraft.d.ts",
"description": "Javascript ORM-like storage in SQLite (WebSQL or other), synced to the cloud",
"repository": {
"type": "git",
"url": "git://github.com/arolson101/updraft.git"
},
"keywords": [
"orm",
"sqlite",
"websql",
"schema",
"dropbox",
"iCloud",
"CloudKit"
],
"scripts": {
"postinstall": "typings install",
"test": "gulp test",
"cover": "./node_modules/.bin/ts-node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha test/*.ts"
},
"author": "Andrew Olson",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"chai-datetime": "^1.4.1",
"clone": "^1.0.2",
"enum": "^2.3.0",
"es5-shim": "^4.5.8",
"es6-shim": "^0.35.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-config-sync": "1.0.2",
"gulp-insert": "^0.5.0",
"gulp-mocha": "^2.2.0",
"gulp-mocha-phantomjs": "^0.11.0",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.5.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-tslint": "^5.0.0",
"gulp-typedoc": "^1.2.1",
"gulp-typescript": "^2.13.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"http-server": "^0.9.0",
"istanbul": "^1.0.0-alpha.2",
"merge2": "^1.0.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sqlite3": "^3.1.3",
"ts-node": "^1.3.0",
"tslint": "^3.14.0",
"typescript": "^1.8.10"
}
}