-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 890 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
{
"name": "jakmar",
"version": "0.0.4",
"description": "Jakmar is a finite state machine.",
"main": "jakmar.js",
"author": "Fabien Deshayes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/FabienDeshayes/jakmar.git"
},
"scripts": {
"test": "istanbul test _mocha --report html -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"devDependencies": {
"istanbul": "~0.3.0",
"mocha": "~1.20.1",
"chai": "~1.9.0",
"coveralls": "~2.11.1",
"mocha-lcov-reporter": "0.0.1",
"sinon": "~1.9.0",
"sinon-chai": "~2.5.0"
},
"bugs": {
"url": "https://github.com/FabienDeshayes/jakmar/issues"
},
"homepage": "https://github.com/FabienDeshayes/jakmar"
}