-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.59 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
79
80
{
"name": "data-structures-and-algorithms",
"version": "1.0.0",
"description": "Data Structures and Algorithms with functional twist",
"typesVersions": {
">=3.4": {
"*": [
"ts3.4/*"
]
}
},
"scripts": {
"postinstall": "lerna bootstrap",
"clean": "lerna clean -y",
"lint:scripts": "eslint \"packages/**/*.{js,ts}\" \"scripts/**/*.{js,ts}\" --cache --cache-location \".cache/.eslintcache/\"",
"lint": "npm run lint:scripts",
"typecheck": "tsc --noEmit -p ./tsconfig.typecheck.json",
"test": "cross-env NODE_ENV=test jest --projects ./scripts/jest --cacheDirectory \".cache/jest/\"",
"test:watch": "npm run test -- --watch",
"test:changed-only": "npm run test -- --onlyChanged",
"test:coverage": "npm run test -- --coverage",
"test:update-snapshot": "npm run test -- --updateSnapshot",
"format": "npm run lint:scripts -- --fix",
"format:check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"check": "npm run lint && npm run typecheck && npm run test:coverage -- --bail",
"coveralls": "cat ./reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coverage"
},
"engines": {
"node": "12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgmanutd/data-structures-and-algorithms.git"
},
"keywords": [
"javascript",
"typescript",
"data",
"structures",
"data structures",
"data-structures",
"algorithms",
"ramda",
"functional programming",
"functional-programming",
"functional",
"fp"
],
"author": "pgmanutd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgmanutd/data-structures-and-algorithms/issues"
},
"homepage": "https://github.com/pgmanutd/data-structures-and-algorithms#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/ramda": "^0.27.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-core": "^6.26.3",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"exec-sh": "^0.3.4",
"husky": "^4.2.5",
"jest": "^25.5.4",
"lerna": "^3.20.2",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}