-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) Β· 869 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": "kaomojify",
"version": "0.2.3",
"description": "Kaomojify Javascript code",
"main": "./convert.js",
"bin": {
"kaomojify": "./kaomojify.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kokororin/kaomojify.git"
},
"keywords": [
"library"
],
"author": "kokororin",
"license": "MIT",
"bugs": {
"url": "https://github.com/kokororin/kaomojify/issues"
},
"homepage": "https://github.com/kokororin/kaomojify#readme",
"dependencies": {
"glob": "^7.1.0",
"is-there": "^4.3.3",
"mkdirp": "^0.5.1",
"yargs": "^5.0.0"
},
"devDependencies": {
"eslint": "^3.5.0",
"eslint-config-kotori": "^0.1.6",
"eslint-plugin-node": "^2.0.0",
"mocha": "^3.0.2",
"power-assert": "^1.4.1"
},
"scripts": {
"test": "mocha ./*.test.js",
"lint": "eslint ./*.js"
}
}