-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@konmuc/authc",
"version": "1.0.3",
"description": "Authentication layer for konmuc website.",
"main": "index.js",
"scripts": {
"prestart": "npm run -s build",
"start": "node dist/index.js",
"clean": "rimraf dist",
"build": "npm run clean && mkdir -p dist/src && babel src -s -D -d dist/src",
"lint": "esw -w src tests",
"pretest": "npm run build && mkdir -p dist/tests && babel tests -s -D -d dist/tests",
"test": "node_modules/.bin/intern",
"ci": "npm run test && node_modules/.bin/codecov",
"prepublishOnly": "npm run test && npm run build && cp package.json dist/src/package.json && cp README.md dist/src/README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/konmuc/authc.git"
},
"author": "sfrey",
"license": "Apache-2.0",
"dependencies": {
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"jsonwebtoken": "^8.1.1",
"moment": "^2.20.1",
"rand-token": "^0.4.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-register": "^6.26.0",
"codecov": "^3.0.0",
"eslint": "^4.12.1",
"eslint-plugin-import": "^2.8.0",
"eslint-watch": "^3.1.3",
"express": "^4.16.2",
"body-parser": "^1.18.2",
"morgan": "^1.9.0",
"intern": "^4.1.5",
"mongoose": "^5.0.4",
"node-fetch": "^2.0.0",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties",
"dynamic-import-node"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"no-console": [
"error",
{
"allow": [
"info",
"warn",
"error"
]
}
]
}
}
}