81 lines
1.8 KiB
JSON
81 lines
1.8 KiB
JSON
{
|
|
"private": true,
|
|
"name": "xo-test",
|
|
"version": "0.0.0",
|
|
"license": "ISC",
|
|
"description": "Test client for Xo-Server",
|
|
"keywords": [],
|
|
"homepage": "https://github.com/vatesfr/xo-test",
|
|
"bugs": "https://github.com/vatesfr/xo-test/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xo-test.git"
|
|
},
|
|
"author": {
|
|
"name": "Julien Fontanet",
|
|
"email": "julien.fontanet@isonoe.net"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/",
|
|
"bin": {},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"@babel/cli": "^7.1.5",
|
|
"@babel/core": "^7.1.6",
|
|
"@babel/preset-env": "^7.1.6",
|
|
"@iarna/toml": "^2.2.1",
|
|
"app-conf": "^0.6.1",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-plugin-lodash": "^3.2.11",
|
|
"cross-env": "^5.2.0",
|
|
"golike-defer": "^0.4.1",
|
|
"husky": "^1.2.0",
|
|
"jest": "^23.6.0",
|
|
"lodash": "^4.17.11",
|
|
"must": "^0.13.2",
|
|
"rimraf": "^2.5.4",
|
|
"xo-collection": "^0.4.1",
|
|
"xo-lib": "^0.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.9.0",
|
|
"eslint-config-prettier": "^3.3.0",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-node": "^8.0.0",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"lint-staged": "^8.1.0",
|
|
"prettier": "^1.15.2"
|
|
},
|
|
"scripts": {
|
|
"dev-test": "jest --bail --watch",
|
|
"test": "jest"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"jest": {
|
|
"modulePathIgnorePatterns": [
|
|
"<rootDir>/src/old-tests"
|
|
],
|
|
"testEnvironment": "node",
|
|
"testRegex": "\\.spec\\.js$"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"git add",
|
|
"eslint"
|
|
]
|
|
}
|
|
}
|