forked from yangshun/lago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "Lago",
"version": "0.0.2",
"description": "Data structures and algorithms library for JavaScript.",
"main": "lib/index.js",
"scripts": {
"check-all": "yarn prettier && yarn lint && yarn test",
"check-all:ci": "yarn prettier && yarn lint && yarn run test:ci",
"lint": "eslint .",
"prettier": "prettier --write 'lib/**/*.js'",
"test": "jest --coverage",
"test:ci": "jest --coverage --runInBand",
"start": "jest --coverage --watch"
},
"repository": "git+https://github.com/yangshun/lago.git",
"keywords": ["algorithms", "data", "structures"],
"author": "Yangshun Tay",
"license": "MIT",
"bugs": {
"url": "https://github.com/yangshun/lago/issues"
},
"homepage": "https://github.com/yangshun/lago#readme",
"devDependencies": {
"babel-plugin-transform-builtin-extend": "^1.1.2",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^20.0.4",
"lodash": "^4.17.4",
"prettier": "^1.7.4"
},
"dependencies": {
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0"
}
}