-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
39
40
41
{
"name": "storing-json",
"version": "1.0.2",
"description": "allows to store json data in a string key/value store",
"keywords": [
"localstorage",
"json-storage",
"serialization"
],
"main": "index.js",
"repository": "https://github.com/taburetkin/storing-json.git",
"author": "dimtabu <dima.taburetkin@gmail.com>",
"license": "MIT",
"scripts": {
"test-w": "mocha -w --config ./test/.mocharc.json",
"test": "mocha --config ./test/.mocharc.json",
"coverage": "nyc npm run test",
"coveralls": "yarn coverage && nyc --reporter=text-lcov npm run test | coveralls"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.4",
"backbone": "^1.4.0",
"backbone.marionette": "^4.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"jquery": "^3.4.1",
"jsdom": "^15.1.1",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"underscore": "^1.9.1"
}
}