-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "steplix-mapper",
"version": "0.0.7",
"description": "Steplix Mapper is a promise-based Node.js Remote Object Mapper.",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint core tests",
"lint-fix": "node_modules/.bin/eslint --fix core tests",
"test-app": "NODE_ENV=testing node tests/app/index",
"test": "NODE_ENV=testing mocha --file './tests/setup.js' --reporter spec --recursive tests/**/*.test.js"
},
"homepage": "https://github.com/steplix/SteplixMapper#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/steplix/SteplixMapper.git"
},
"author": "Steplix Developers",
"license": "ISC",
"bugs": {
"url": "https://github.com/steplix/SteplixMapper/issues"
},
"dependencies": {
"async": "^3.1.0",
"bluebird": "^3.7.1",
"depd": "^2.0.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"numeral": "^2.0.6",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"watch-object": "^1.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2",
"mock-require": "^3.0.3",
"supertest": "^4.0.2"
}
}