This repository has been archived by the owner on Jun 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "@holvonix-open/js-kitchen-sync",
"version": "0.0.3",
"publishConfig": {
"access": "public"
},
"private": false,
"description": "Links to all our JS packages to track dependencies.",
"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/js-kitchen-sync#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/holvonix-open/js-kitchen-sync.git"
},
"author":
"Holvonix LLC and the js-kitchen-sync AUTHORS <sourcecode@holvonix.com> (https://github.com/holvonix-open/js-kitchen-sync)",
"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",
"dependencies": {
"js-devbox": "5.0.0",
"json2array": "3.0.0"
},
"devDependencies": {
"js-devbox": "5.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "./coverage/"
}
}