-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "@groveco/backbone.store",
"main": "dist/index.js",
"module": "src/index.js",
"repository": "git://github.com/groveco/backbone.store.git",
"version": "1.0.0",
"scripts": {
"prepack": "NODE_ENV=development npm install && npm run build",
"build": "babel src --out-dir dist",
"build:watch": "babel --watch src --out-dir dist",
"build:docs": "jsdoc --readme README.md src/* -d ./docs",
"test": "jest ./tests",
"lint": "eslint ./src/index.js"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"backbone": "^1.3.3",
"clone": "^2.1.0",
"jquery": "^3.6.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.0",
"jest-junit": "^1.3.0",
"jsdoc": "^3.6.2",
"sinon": "^1.17.2"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"testResultsProcessor": "jest-junit",
"testURL": "http://localhost/"
}
}