-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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": "sql-stamp",
"description": "The tiny SQL templater",
"version": "0.8.0",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/ test/",
"test": "mocha test/index.js",
"coverage": "mocha test/index.js -r blanket -R mocha-term-cov-reporter",
"coverage-ci": "mocha test/index.js -r blanket -R mocha-lcov-reporter > lcov.info && codeclimate-test-reporter < lcov.info",
"benchmark": "node test/benchmark/no-pre-compile.js; node test/benchmark/pre-compile.js"
},
"repository": {
"type": "git",
"url": "git://github.com/orangemug/sql-stamp.git"
},
"config": {
"blanket": {
"pattern": [
"index.js"
],
"data-cover-never": "node_modules"
}
},
"keywords": [
"template",
"sql"
],
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"devDependencies": {
"benchmark": "^2.1.0",
"blanket": "^1.2.3",
"codeclimate-test-reporter": "^0.3.2",
"coveralls": "^2.11.9",
"eslint": "^3.0.1",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mocha-term-cov-reporter": "^0.2.3"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.0",
"lodash.assign": "^4.0.9",
"obj-by-path": "orangemug/obj-by-path"
}
}