This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
{
"name": "new-ball",
"version": "0.0.1-SNAPSHOT",
"private": true,
"description": "Template for a new yarn-based node package",
"main": "lib/index.js",
"scripts": {
"build": "yarn run clean && yarn babel src/ -d lib/",
"clean": "rm -rf lib",
"flow": "flow",
"lint": "eslint src",
"precommit": "lint-staged && yarn test",
"prepack": "yarn build",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"preversion": "yarn test",
"test": "yarn lint && yarn run flow && yarn build && yarn test-only",
"test-only": "jest",
"contrib": "./scripts/contrib.sh",
"tidy-ci": "yarn contrib"
},
"engines": {
"node": ">=6.0.0",
"yarn": "^1.3.2"
},
"keywords": ["KEYWORDS"],
"lint-staged": {
"src/**/*.{js,jsx}": ["prettier --parser flow --write", "git add"],
"**/*.{json,md}": ["prettier --write", "git add"]
},
"homepage": "https://github.com/holvonix-open/new-ball#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/holvonix-open/new-ball.git"
},
"author":
"Holvonix LLC and the new-ball AUTHORS <[email protected]> (https://github.com/holvonix-open/new-ball)",
"contributors": ["See AUTHORS file", "See CONTRIBUTORS file"],
"files": [
"lib/",
"CHANGELOG.md",
"package.json",
"LICENSE",
"AUTHORS",
"NOTICE",
"README.md",
"CONTRIBUTORS",
".flowconfig",
".babelrc",
".eslintrc.json",
".npmignore",
".gitignore",
".travis.yml",
"yarn.lock"
],
"license": "Apache-2.0",
"devDependencies": {
"js-devbox": "^5.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "./coverage/"
}
}