-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.09 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
35
36
37
38
{
"name": "bloomrun",
"version": "4.1.1",
"description": "JS object pattern matching",
"main": "bloomrun.js",
"scripts": {
"bench": "node bench.js",
"test": "standard | snazzy && tape test.js | tap-spec",
"test:cov": "nyc tape test.js | tap-spec",
"zuul-local": "zuul --open --local 8081 -- test.js",
"coverage": "npm run test:cov && nyc report --reporter=html tape test.js",
"coveralls": "npm run test:cov && nyc report --reporter=text-lcov | coveralls"
},
"precommit": "test",
"author": "Matteo Collina <hello@matteocollina.com>",
"contributors": [
"Dean McDonnell (http://mcdonnelldean.me)"
],
"repository": "https://github.com/mcollina/bloomrun.git",
"license": "MIT",
"dependencies": {
"sorted-array-functions": "^1.1.0"
},
"devDependencies": {
"nyc": "^13.1.0",
"benchmark": "^2.1.4",
"coveralls": "^3.0.0",
"fastbench": "^1.0.0",
"istanbul": "^0.4.1",
"patrun": "^0.5.0",
"pre-commit": "^1.1.1",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"zuul": "^3.11.1"
}
}