-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 1.83 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
{
"name": "safesql",
"description": "string template tags for safely composing MySQL and PostgreSQL query strings",
"keywords": [
"sql",
"security",
"injection",
"template",
"template-tag",
"string-template",
"sec-roadmap",
"es6"
],
"version": "2.0.2",
"main": "index.js",
"files": [
"fragment.js",
"id.js",
"index.js",
"lib/*.js"
],
"mintable": {
"selfNominate": [
"safesql/fragment",
"safesql/id"
]
},
"scripts": {
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"lint": "./node_modules/.bin/eslint .",
"prepack": "npm run lint && npm test && ./scripts/make-md-toc.pl README.md",
"test": "mocha"
},
"pre-commit": [
"prepack"
],
"author": "@mikesamuel",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mikesamuel/safesql.git"
},
"bugs": {
"url": "https://github.com/mikesamuel/safesql/issues"
},
"dependencies": {
"template-tag-common": "^5.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-strict": "^14.0.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2"
},
"eslintIgnore": [
"/coverage/**"
],
"eslintConfig": {
"extends": [
"strict"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "source",
"ecmaFeatures": {
"impliedStrict": false
}
},
"rules": {
"no-warning-comments": [
"error",
{
"terms": [
"do not submit"
]
}
],
"no-void": "off",
"strict": [
"error",
"global"
]
}
}
}