-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 972 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
{
"name": "attheme-js",
"version": "3.0.0",
"description": "A small package for working with .attheme files in JavaScript.",
"author": "SnejUgal <contact@snejugal.ru> (snejugal.ru)",
"license": "MIT",
"keywords": [
"telegram",
"attheme"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SnejUgal/attheme-js.git"
},
"bugs": {
"url": "https://github.com/SnejUgal/attheme-js/issues"
},
"homepage": "https://github.com/SnejUgal/attheme-js#readme",
"main": "lib/index.js",
"scripts": {
"build": "npx tsc -p .",
"test": "npm run build && npx ava",
"format": "npx prettier --write \"{src,test}/**/*.{js,ts}\"",
"prepublishOnly": "rm -rf lib && npm run test"
},
"devDependencies": {
"@types/node": "^13.9.1",
"ava": "^3.5.0",
"jimp": "^0.9.5",
"jsdom": "^16.2.1",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@snejugal/color": "^2.1.1"
}
}