-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "backbone.store",
"version": "1.1.1",
"description": "Store for keeping unique instance of Backbone models with ease.",
"main": "dist/backbone.store.js",
"module": "dist/backbone.store.esm.js",
"jsnext:main": "dist/backbone.store.esm.js",
"sideEffects": false,
"browserslist": [
">0.5%",
"Explorer >= 10",
"not op_mini all"
],
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c",
"coverage": "cross-env NODE_ENV=test nyc mocha --config ./test/.mocharc.json && nyc report --reporter=html",
"lint": "eslint --fix lib/ && eslint --fix test/",
"watch": "rollup -c -w",
"pretest": "rollup -c",
"test": "mocha -w --config ./test/.mocharc.json"
},
"repository": "RoundingWellOS/backbone.store",
"keywords": [
"backbone",
"store",
"model",
"unique"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RoundingWellOS/backbone.store/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/RoundingWellOS/backbone.store#readme",
"peerDependencies": {
"backbone": "^1.3.3",
"underscore": "^1.9.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"babel-plugin-istanbul": "^6.0.0",
"backbone": "^1.4.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.12.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"rollup": "^2.32.1",
"rollup-plugin-eslint": "^7.0.0",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"underscore": "^1.11.0"
}
}