-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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": "objection-slugify",
"version": "3.1.0",
"description": "Automatically slugifies a source field.",
"keywords": [
"objection",
"objection-js",
"objection-slugify",
"plugin",
"plugins",
"slug",
"slugify",
"uuid"
],
"license": "MIT",
"author": {
"name": "calvinl",
"email": "[email protected]",
"url": "https://callai.co"
},
"repository": {
"type": "git",
"url": "https://github.com/combine/objection-slugify.git"
},
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"jest": "jest -c ./test/support/jest.config.js",
"test": "npm run jest",
"test:watch": "npm run jest -- --watch",
"cover": "npm run jest -- --coverage --forceExit",
"coveralls": "npm run cover && cat ./test/coverage/lcov.info | coveralls",
"prepublish": "npm run build"
},
"dependencies": {
"slugify": "^1.3.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"babel-jest": "^24.1.0",
"coveralls": "^3.0.3",
"faker": "^4.1.0",
"jest": "^24.1.0",
"knex": "^0.16.3",
"objection": "^1.6.2",
"sqlite3": "^4.0.6"
},
"peerDependencies": {
"objection": ">=1.0.0"
}
}