-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "timeshift",
"version": "0.0.1",
"description": "Time shifting in JavaScript",
"author": "David Hérault <dherault@nelson.ai> (https://github.com/dherault)",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha $npm_package_options_mocha",
"coverage": "./node_modules/.bin/istanbul cover _mocha -- $npm_package_options_mocha",
"coverage:serve": "cd coverage/lcov-report && python -m SimpleHTTPServer",
"coverage:all": "npm run coverage && npm run coverage:serve"
},
"options": {
"mocha": "--bail --check-leaks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nelson-ai/timeshift.git"
},
"bugs": {
"url": "https://github.com/nelson-ai/timeshift/issues"
},
"homepage": "https://github.com/nelson-ai/timeshift#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^3.13.1",
"eslint-config-nelson": "^0.2.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}