forked from bsiddiqui/bookshelf-uuid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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": "bookshelf-uuid",
"version": "1.0.0",
"description": "Automatically generates UUID for your models",
"main": "index.js",
"scripts": {
"test": "standard && lab --verbose --colors --assert code --ignore __core-js_shared__",
"test-cov": "npm test -- -r console -o stdout -r html -o coverage/coverage.html -r lcov -o coverage/lcov.info",
"reset": "node -e 'require(\"./test/db\").reset().then(process.exit)'",
"knex": "knex --knexfile test/db/knexfile.js",
"migrate": "npm run knex -- migrate:latest",
"seed": "npm run knex -- seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/estate/bookshelf-uuid.git"
},
"keywords": [
"bookshelf",
"knex",
"db",
"uuid",
"guid",
"v1",
"v4",
"uuidv4",
"uuidv1"
],
"author": "Estate <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/estate/bookshelf-uuid/issues"
},
"homepage": "https://github.com/estate/bookshelf-uuid#readme",
"dependencies": {
"lodash.merge": "^4.3.5",
"lodash.result": "^4.3.0",
"uuid": "^2.0.2"
},
"devDependencies": {
"bookshelf": "^0.9.4",
"co": "^4.6.0",
"code": "^2.2.0",
"knex": "^0.10.0",
"lab": "^10.3.1",
"sqlite": "0.0.4",
"sqlite3": "^3.1.3",
"standard": "^7.0.1"
}
}