javascript-algorithms/package.json

40 lines
1.0 KiB
JSON
Raw Normal View History

2018-03-26 04:28:32 +08:00
{
"name": "data-structures",
"version": "1.0.0",
"description": "Data structures on JavaScript",
"main": "index.js",
"scripts": {
2018-03-27 18:03:44 +08:00
"lint": "eslint ./src/*",
2018-03-28 21:25:26 +08:00
"test": "jest",
2018-04-04 12:15:22 +08:00
"ci": "npm run lint && npm run test",
"codecov": "codecov"
2018-03-26 04:28:32 +08:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/trekhleb/data-structures.git"
},
"keywords": [],
"author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/trekhleb/data-structures/issues"
},
"homepage": "https://github.com/trekhleb/data-structures#readme",
"devDependencies": {
2018-03-27 18:03:44 +08:00
"@types/jest": "^22.2.2",
2018-03-26 04:28:32 +08:00
"babel-cli": "^6.26.0",
2018-03-27 18:03:44 +08:00
"babel-preset-env": "^1.6.1",
2018-04-04 12:15:22 +08:00
"codecov": "^3.0.0",
2018-03-27 18:03:44 +08:00
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3"
2018-03-28 20:53:12 +08:00
},
"dependencies": {
"npm": "^5.8.0"
2018-03-26 04:28:32 +08:00
}
}