-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "sql-tag",
"version": "1.0.1",
"description": "A template tag for writing elegant sql strings",
"keywords": [
"es6",
"es2015",
"multiline",
"sql",
"sql-tag",
"string",
"strings",
"tagged",
"template"
],
"homepage": "https://github.com/seegno/sql-tag",
"bugs": "https://github.com/seegno/sql-tag/issues",
"license": "MIT",
"author": {
"name": "Rui Marinho",
"email": "[email protected]",
"url": "https://github.com/ruimarinho"
},
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/seegno/sql-tag.git"
},
"scripts": {
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"lint": "eslint src test",
"prepublish": "npm run transpile",
"test": "NODE_ENV=test mocha $npm_package_options_mocha",
"transpile": "rm -rf dist/* && babel src --out-dir dist/src && cp package.json dist/",
"version": "npm run changelog --future-release=$npm_package_version && npm run transpile && git add -A CHANGELOG.md dist"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015-node4": "^2.1.0",
"babel-register": "^6.11.6",
"eslint": "^3.3.0",
"eslint-config-seegno": "^6.0.0",
"mocha": "^3.0.2",
"pre-commit": "^1.1.2",
"should": "^11.0.0"
},
"engines": {
"node": ">=4"
},
"options": {
"mocha": "--compilers js:babel-register --recursive --require should"
},
"pre-commit": [
"lint"
]
}