-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 943 Bytes
/
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
{
"name": "@sealcode/tempseal",
"version": "0.1.7",
"description": "Template engine",
"main": "index",
"types": "index",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepublish": "npm run build",
"test": "mocha tests/render.js"
},
"author": "Sealcode",
"license": "ISC",
"files": [
"**/*.js",
"**/*.d.ts"
],
"dependencies": {
"@types/bluebird": "^3.5.29",
"@types/classnames": "^2.2.10",
"@types/color": "^3.0.1",
"@types/mocha": "^7.0.2",
"@types/node-sass": "^4.11.0",
"@types/object-hash": "^1.3.0",
"@types/sharp": "^0.24.0",
"@types/uuid": "^3.4.6",
"bluebird": "^3.7.1",
"chalk": "^3.0.0",
"classnames": "^2.2.6",
"color": "^3.1.2",
"get-google-fonts": "^1.2.2",
"make-dir": "^3.0.2",
"node-sass": "^4.13.0",
"object-hash": "^2.0.1",
"rxjs": "^6.5.4",
"sharp": "^0.24.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"mocha": "^7.1.1",
"typescript": "^3.8.2"
}
}