forked from paroga/cbor-js
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1018 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": "@arduino/cbor-js",
"version": "0.1.3",
"description": "The Concise Binary Object Representation (CBOR) data format (RFC7049) implemented in pure JavaScript.",
"keywords": [
"cbor"
],
"homepage": "https://github.com/arduino/cbor-js",
"bugs": "https://github.com/arduino/cbor-js/issues",
"license": "MIT",
"author": "Patrick Gansterer <paroga@paroga.com> (http://paroga.com/)",
"main": "cbor.js",
"files": [
"cbor.js"
],
"repository": {
"type": "git",
"url": "http://github.com/arduino/cbor-js.git"
},
"scripts": {
"test": "grunt test",
"ci": "grunt ci"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-coveralls": "^2.0.0",
"grunt-qunit-istanbul": "^1.0.0",
"grunt-saucelabs": "^9.0.1",
"qunit": "2.9.2"
}
}