-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 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
38
39
{
"name": "lineapihelper",
"version": "0.2.0",
"description": "LINE API Helper npm package for LINE Developer",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirateek/lineapihelper.git"
},
"keywords": [
"lineapihelper",
"lah"
],
"author": "Siratee K.",
"license": "ISC",
"bugs": {
"url": "https://github.com/sirateek/lineapihelper/issues"
},
"homepage": "https://github.com/sirateek/lineapihelper#readme",
"dependencies": {
"axios": "^0.21.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}