-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "@blabu.com/countdown-gif",
"version": "1.0.3",
"description": "Use Node.js to generate an animated countdown gif.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"pretest": "npm run lint",
"test": "mocha --exit --opts test/mocha.opts test/*.spec.ts",
"build": "rimraf dist && tsc",
"dev": "env NODE_ENV=development nodemon --exec ts-node sample/server.ts",
"lint": "tslint -c tslint.json --project tsconfig.json 'src/**/*.ts' 'src/**/*.tsx' 'test/**/*.ts' 'test/**/*.tsx'",
"lint:fix": "tslint --fix -c tslint.json --project tsconfig.json 'src/**/*.ts' 'src/**/*.tsx' 'test/**/*.ts' 'test/**/*.tsx'",
"prepublishOnly": "npm run build"
},
"keywords": [
"countdown",
"gif",
"generator"
],
"repository": "https://github.com/blabu-com/countdown-gif.git",
"author": "Tomas Strejcek <[email protected]>",
"license": "MIT",
"dependencies": {
"canvas": "^2.6.0",
"gifencoder": "^2.0.1",
"moment": "^2.13.0",
"moment-timezone": "^0.5.27"
},
"devDependencies": {
"@types/moment": "^2.13.0",
"@types/node": "^12.12.17",
"compression": "^1.7.4",
"express": "^4.13.4",
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-standard-plus": "^2.3.0",
"typescript": "^3.7.3"
},
"files": [
"dist/**/*"
],
"pre-commit": [
"test"
]
}