-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "snowproc",
"version": "1.0.0",
"description": "Typescript-framework for stored procedures in Snowflake",
"main": "dist/index.js",
"dependencies": {
"@types/argparse": "^1.0.36",
"@types/node": "^12.12.6",
"argparse": "^1.0.10",
"find-node-modules": "^2.0.0",
"fs": "^0.0.1-security",
"glob": "^7.1.5",
"process": "^0.11.10",
"shelljs": "^0.8.3",
"ts-morph": "^4.3.2",
"typescript": "^3.6.4",
"typescript-compiler": "^1.4.1-2"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-rollup": "^2.16.2",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.2.11"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build src/tsconfig.json"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/thijskoot/snowproc.git"
},
"author": "Thijs Koot",
"license": "ISC",
"bin": {
"snowproc-compile": "dist/scripts/compile.js",
"snowproc-new": "dist/scripts/new.js"
},
"readme": "README.md"
}