-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
58
59
60
61
62
{
"name": "snowflake-ingest-node",
"version": "0.0.5",
"description": "snowflake snowpipe API ingest for Node",
"keywords": [
"snowflake",
"snowpipe",
"ingest",
"node",
"typescript"
],
"main": "dist/lib/snowflake-ingest-node.js",
"module": "dist/snowflake-ingest-node.es5.js",
"typings": "dist/types/snowflake-ingest-node.d.ts",
"files": [
"dist"
],
"author": "Brian Zinn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/brianzinn/snowflake-ingest-node"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/node": "^12.0.8",
"cross-env": "^6.0.0",
"jwt-simple": "^0.5.6",
"lint-staged": "^9.0.0",
"prettier": "^1.14.3",
"rimraf": "^3.0.0",
"rollup": "^1.15.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.23.0",
"ts-node": "^8.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.0.3"
},
"peerDependencies": {
"jwt-simple": "*"
}
}