-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 927 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
{
"name": "yeah-js",
"version": "1.0.0",
"description": "A javascript library to convert video input to its excitement score.",
"scripts": {
"test": "npm run lint && npm run cover && npm run report",
"lint": "eslint ./lib/*.js",
"cover": "NODE_ENV=test istanbul cover _mocha --report text --report html --report lcovonly -- -R spec",
"report": "codecov -t ${CODECOV_TOKEN}",
"mocha": "NODE_ENV=test mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naosk8/yeah.js.git"
},
"author": "Nao Ito",
"license": "MIT",
"bugs": {
"url": "https://github.com/naosk8/yeah.js/issues"
},
"homepage": "https://github.com/naosk8/yeah.js#readme",
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "^3.14.1",
"istanbul": "^0.4.5",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"mocha-jsdom": "^1.1.0",
"yuidoc-bootstrap-theme": "^1.0.6"
}
}