This repository has been archived by the owner on Dec 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.85 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
69
70
71
72
73
74
75
76
77
78
{
"name": "ima-server",
"version": "0.16.3",
"description": "Default dev server for IMA.js applications.",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint -c ./.eslintrc.js --fix './**/*.js' --ignore-path ./.prettierignore",
"preversion": "npm test && npm run lint",
"postversion": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/seznam/IMA.js-server.git"
},
"keywords": [
"gulp",
"IMA.js",
"ima"
],
"author": "Seznam.cz, a.s.",
"license": "MIT",
"bugs": {
"url": "https://github.com/seznam/IMA.js-server/issues"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"homepage": "https://github.com/seznam/IMA.js-server",
"devDependencies": {
"express": "^4.16.4",
"ima-helpers": "^0.16.0",
"jest": "^24.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-config-last": "^0.0.5",
"eslint-plugin-jasmine": "^2.9.3",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4"
},
"dependencies": {
"async-each": "1.0.1",
"error-to-json": "1.1.0",
"highlight.js": "9.13.1",
"stack-trace": "0.0.10",
"winston": "3.2.1"
},
"peerDependencies": {
"ima-helpers": "0.16.x"
},
"engines": {
"node": ">=6",
"npm": ">=4 <6"
},
"jest": {
"bail": false,
"verbose": true,
"testEnvironment": "node",
"setupFiles": [],
"resolver": "<rootDir>/resolver.js",
"modulePaths": [
"<rootDir>/"
],
"testMatch": [
"**/__tests__/*.js"
]
},
"jestConfig": {
"mockRules": {
"lib": [
{
"../app/build.js": "./__mocks__/build.js"
}
]
}
}
}