-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "json-crud",
"version": "1.0.1",
"description": "A simple CRUD JSON database using either a JSON file or a folder of JSON files.",
"main": "json-crud.js",
"types": "src/typings/json-crud.d.ts",
"scripts": {
"dev-test": "gulp test",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MeldCE/json-crud.git"
},
"keywords": [
"json",
"database",
"db",
"file",
"folder",
"crud"
],
"author": "MeldCE Opensource",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MeldCE/json-crud/issues"
},
"homepage": "https://github.com/MeldCE/json-crud#readme",
"devDependencies": {
"concat": "^1.0.0",
"deasync": "^0.1.4",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-check-deps": "^1.3.0",
"gulp-complexity": "^0.3.2",
"gulp-concat": "^2.6.0",
"gulp-coveralls": "^0.1.4",
"gulp-documentation": "^2.1.0",
"gulp-eslint": "^3.0.1",
"gulp-foreach": "^0.1.0",
"gulp-include": "^2.1.0",
"gulp-istanbul": "^1.0.0",
"gulp-jasmine": "^2.3.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-strip-debug": "^1.1.0",
"gulp-util": "^3.0.7",
"jasmine": "^2.4.1",
"jasmine2-reporter": "^0.2.0",
"node-cp": "^0.1.1",
"rename": "^1.0.3",
"rimraf": "^2.5.2"
},
"dependencies": {
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"promise": "^7.1.1",
"skemer": "^0.8.6-r1"
},
"tonicExampleFilename": "example.js"
}