-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.01 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
43
44
45
46
47
48
{
"name": "@bam.tech/kettle",
"version": "2.1.1",
"main": "./dist/kettle.js",
"types": "./dist/kettle.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/bamlab/kettle"
},
"keywords": [
"template",
"engine",
"boilerplate",
"kettle"
],
"scripts": {
"test": "yarn test:types && yarn test:unit",
"test:unit": "jest",
"test:types": "tsc --noEmit",
"prepare": "rm -rf dist && yarn tsc"
},
"files": [
"dist",
"README.md",
"package.json"
],
"devDependencies": {
"@types/gulp": "4.0.7",
"@types/jest": "26.0.14",
"@types/node": "14.11.2",
"@types/plugin-error": "0.1.1",
"@types/through2": "2.0.36",
"@types/uuid": "8.3.0",
"@types/vinyl": "2.0.4",
"gulp": "4.0.2",
"jest": "26.4.2",
"prettier": "2.1.2",
"ts-jest": "26.4.1",
"ts-node": "9.0.0",
"typescript": "4.0.3"
},
"dependencies": {
"plugin-error": "1.0.1",
"through2": "4.0.2",
"uuid": "8.3.0",
"vinyl": "2.2.1"
}
}