-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "algorithms",
"version": "1.0.0",
"description": "algorithms and data structure basics in javascript",
"main": "index.js",
"private": true,
"scripts": {
"lint:all": "eslint --fix",
"lint:dry": "eslint --fix-dry-run",
"lint:file": "eslint --fix --",
"flow": "flow",
"reset": "rm -rf node-modules/ && rm package-lock.json && npm install",
"test": "jest --watch",
"test:all": "jest --coverage",
"test:debug": "node --inspect-brk jest ./node_modules/jest/bin/jest.js --runInBand",
"coverage": "npm run test:all && open coverage/lcov-report/index.html",
"validate": "npm run flow && npm run test:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecmarsh/algorithms.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecmarsh/algorithms/issues"
},
"homepage": "https://github.com/ecmarsh/algorithms#readme",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"flow-bin": "^0.98.1",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lint-staged": "^8.1.7"
}
}