-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.49 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
63
64
65
66
67
{
"name": "@pittankopta/wataridori",
"version": "1.0.2",
"description": "CLI for Importing emoji to esa.io",
"main": "./lib/index.js",
"bin": {
"wataridori": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pittan/wataridori.git"
},
"scripts": {
"start": "ts-node src/index.ts",
"create": "npm run build && npm run test",
"local-link": "npm run build && npm link && wataridori",
"build": "tsc -p .",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"pre-publish": "npm run refresh && npm run build",
"test": "jest"
},
"bugs": {
"url": "https://github.com/Pittan/wataridori/issues"
},
"keywords": [
"esa",
"emoji"
],
"author": "Amon Keishima",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^12.7.8",
"jest": "^24.9.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"dependencies": {
"@types/jest": "^24.0.18",
"apng-js": "^1.1.0",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"dotenv": "^8.1.0",
"figlet": "^1.2.4",
"ora": "^4.0.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"ts-jest": "^24.1.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.spec.json"
}
},
"testMatch": [
"**/*.spec.+(ts|js)"
]
}
}