-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "sqlmacro",
"version": "0.1.8",
"description": "a stupidly simple template engine for SQL",
"main": "index.mjs",
"type" :"module",
"exports": {
"./common.js": {
"default": "./index.cjs"
},
"." : {
"import": "./index.mjs",
"require": "./index.cjs"
}
},
"scripts": {
"make" : "node make.js",
"test-es6" : "NODE_OPTIONS='--experimental-vm-modules' node --test index.test.mjs",
"test-cs" : " node --test index.test.cjs",
"test" : "npm run make; npm run test-es6; npm run test-cs"
},
"files": [
"README.md",
"index.cjs",
"index.mjs",
"package.json"
],
"jest" : {
"moduleFileExtensions":[ "js", "mjs", "cjs", "jsx", "ts", "tsx", "json", "node" ],
"testMatch":[ "**/*.test.cjs", "**/*.test.mjs" ],
"verbose":true
},
"author": {
"name" : "Atsushi Oka",
"url": "https://github.com/a-oka-z/sqlmacro"
},
"repository": {
"type": "git",
"url": "https://github.com/a-oka-z/sqlmacro"
},
"license": "ISC"
}