-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "auth-driver-utils",
"version": "1.2.0",
"description": "Useful methods to extend Auth driver.",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && ./node_modules/.bin/_mocha",
"build": "npm run lint && ./node_modules/.bin/babel -d dist/ src/",
"lint": "./node_modules/.bin/eslint src test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prismatik/auth-driver-utils.git"
},
"keywords": [
"auth",
"driver",
"utils"
],
"author": "Prismatik <[email protected]> (http://blog.prismatik.com.au)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Prismatik/auth-driver-utils/issues"
},
"homepage": "https://github.com/Prismatik/auth-driver-utils#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.10.1",
"eslint-config-prismatik": "^1.0.0",
"mocha": "^2.4.5",
"must": "^0.13.1"
},
"dependencies": {
"lodash": "^4.12.0"
},
"engines": {
"npm": "^3.8.6"
}
}