-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.31 KB
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
{
"name": "@sparkpost/fixture-interface",
"version": "2.0.0",
"private": false,
"description": "A simple interface to make helpers for setting up and tearing down data needed for tests.",
"main": "fixture.js",
"directories": {
"test": "test"
},
"dependencies": {
"bluebird": "^3.7.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-sparkpost": "^3.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"sinon": "^13.0.1"
},
"scripts": {
"lint": "eslint --fix fixture.js test/unit/**/*.js",
"test": "jest test/unit/*.spec.js --ci --coverage --coverageDirectory='test/reports/unit'",
"test-watch": "jest test/unit/*.spec.js --watch --coverage --coverageDirectory='test/reports/unit'",
"example": "jest example/test --watch --coverage --coverageDirectory='example/test/reports'",
"chk-changelog": "grep `node -e 'console.log(require(\"./package.json\").version);'` CHANGELOG.md || (echo 'Please update CHANGELOG.md with your updates'; exit 255)",
"prepare": "husky install",
"prepublishOnly": "npm run chk-changelog"
},
"keywords": [
"test",
"fixture"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SparkPost/fixture-interface.git"
},
"author": "@Sparkpost",
"license": "Apache-2.0"
}