-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 937 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 937 Bytes
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
{
"name": "sql-moduleon",
"version": "2.0.0",
"description": "A lightweight module used to process .sql templates tags",
"main": "index.js",
"scripts": {
"preversion": "npm test && npm run typings",
"typings": "npx tsc --allowJs --checkJs --declaration --declarationDir typings --emitDeclarationOnly --skipLibCheck --lib es6,dom index.js ",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/Enzuo/sql-moduleon"
},
"files": [
"/example",
"/index.js",
"/typings"
],
"keywords": [
"light",
"template",
"sql"
],
"author": "Enzuo",
"license": "MIT",
"typings": "typings/index.d.ts",
"bugs": {
"url": "https://github.com/Enzuo/sql-moduleon/issues"
},
"devDependencies": {
"eslint": "^5.15.3",
"mocha": "~6.0.2",
"should": "^8.0.2"
},
"runkitExampleFilename": "example/example.js"
}