-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 739 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "scalacheck-book-examples-in-jsverify",
"version": "0.0.0",
"description": "Port of the examples in the ScalaCheck book to JavaScript and JSVerify",
"scripts": {
"test": "mocha --compilers js:babel-register './src/**/*Tests.js'"
},
"author": "Jonathan Taylor",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"jsverify": "^0.8.2",
"mocha": "^3.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/taylorjg/ScalaCheckBookExamplesInJSVerify.git"
},
"homepage": "https://github.com/taylorjg/ScalaCheckBookExamplesInJsVerify"
}