forked from anfema/bin-grammar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 798 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
32
33
34
35
36
37
{
"name": "bin-grammar",
"version": "3.3.0",
"description": "Binary data parser and encoder with a readable interface",
"main": "index.js",
"author": "Johannes Schriewer <@dunkelstern>",
"license": "BSD-3-Clause",
"scripts": {
"test": "ava"
},
"devDependencies": {
"ava": "^0.18.0",
"babel-eslint": "^7.1.1",
"eslint": "^3.10.2",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-watch": "^3.1.0"
},
"dependencies": {
"crc": "^3.4.4"
},
"repository": {
"type": "git",
"url": "git@github.com:anfema/bin-grammar.git"
},
"ava": {
"source": [
"src/**/*.js",
"index.js"
],
"files": [
"test/**/*.js"
],
"failFast": false
}
}