-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "eriksen",
"version": "1.3.3",
"description": "A model-marshalling library for dual-write/single-read data migrations",
"license": "MIT",
"main": "eriksen.js",
"keywords": [
"util",
"marshalling"
],
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"make-me-pretty": "prettier-eslint \"**/*.js\" --write",
"lint": "eslint . --fix",
"test": "npm run test:unit",
"test:func": "NODE_ENV=test NODE_PATH=$NODE_PATH:. nyc --reporter=text-summary --reporter=lcov --report-dir=test/reports/func/ mocha test/func/",
"test:unit": "NODE_ENV=test NODE_PATH=$NODE_PATH:. nyc --reporter=text-summary --reporter=lcov --report-dir=test/reports/unit/ mocha test/unit/",
"start": "NEW_RELIC_HOME=./config/ NODE_PATH=$NODE_PATH:. node server",
"dev": "NODE_ENV=dev nodemon --watch . --ignore ./node_modules -x \"npm start\"",
"precommit": "lint-staged",
"prepush": "auditmated",
"postpublish": "git push origin master"
},
"lint-staged": {
"**/*.js": [
"npm run make-me-pretty",
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparkPost/eriksen.git"
},
"author": "",
"bugs": {
"url": "https://github.com/SparkPost/eriksen/issues"
},
"homepage": "https://github.com/SparkPost/eriksen#readme",
"dependencies": {
"lodash": "^4.16.6"
},
"devDependencies": {
"auditmated": "^0.1.2",
"chai": "^3.5.0",
"eslint": "^5.3.0",
"eslint-config-sparkpost": "^1.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"prettier-eslint-cli": "^4.7.1",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0"
}
}