-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 904 Bytes
/
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
{
"name": "@kristen/data-structures",
"version": "1.8.0",
"description": "JS Library for data strucutres",
"main": "lib/index.js",
"repository": "https://github.com/kristen/data-structures",
"author": "Kristen Sundquist <kssundquist@gmail.com>",
"homepage": "https://github.com/kristen/data-structures",
"license": "MIT",
"scripts": {
"build": "yarn lint && babel ./src -d ./lib --ignore '**/*.test.js'",
"test": "jest --coverage --config=jest.config.json && codecov",
"test:watch": "jest --watch --config=jest.config.json",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"preversion": "yarn test",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/preset-env": "^7.4.2",
"codecov": "^3.5.0",
"eslint": "^5.15.3",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.5.0"
}
}