-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.78 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
{
"name": "flow-linq",
"version": "1.0.1",
"description":
"Another LINQ implementation in JavaScript, but with Flow annotations!",
"main": "index.js",
"scripts": {
"build": "babel --watch=./src --out-dir=./build",
"clean": "rm -rf node_modules",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"flow": "flow",
"precommit": "lint-staged",
"precoveralls": "jest --coverage",
"pretest": "npm run pretty",
"pretty": "prettier --write index.js src/**/*.js __tests__/**/*.js",
"test": "jest"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
},
"standard": {
"env": ["jest"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kutyel/flow-linq.git"
},
"keywords": [
"linq",
"javascript",
"flow",
"jest",
"yarn",
"functional programming"
],
"author": {
"name": "Flavio Corpa",
"email": "[email protected]",
"url": "https://github.com/kutyel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kutyel/flow-linq/issues"
},
"engines": {
"node": ">= 6"
},
"homepage": "https://github.com/kutyel/flow-linq#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"coveralls": "latest",
"flow-bin": "^0.81.0",
"git-dirty": "latest",
"husky": "^0.14.3",
"jest": "latest",
"lint-staged": "^7.0.0",
"prettier": "^1.6.1"
},
"dependencies": {},
"lint-staged": {
"src/**/*.{js,css,json}": [
"prettier --write --single-quote --trailing-comma es5",
"git add"
]
}
}