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
/
Copy pathpackage.json
98 lines (98 loc) · 2.44 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "js-devbox",
"version": "5.2.0",
"private": false,
"description": "Some standard devDependencies we use",
"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"
},
"bin": {
"github-changes": "./scripts/null-github-changes.sh",
"pushver": "./scripts/pushver.sh"
},
"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-devbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/holvonix-open/js-devbox.git"
},
"author": "Holvonix LLC and the js-devbox AUTHORS <[email protected]> (https://github.com/holvonix-open/js-devbox)",
"contributors": [
"See AUTHORS file",
"See CONTRIBUTORS file"
],
"files": [
"lib/",
"scripts/null-github-changes.sh",
"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": {
"babel-cli": "^6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.14.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.40.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-prettier": "^2.4.0",
"flow-bin": "^0.61.0",
"git-contributors": "^0.2.3",
"husky": "^0.14.3",
"jest-cli": "^22.0.4",
"lint-staged": "^6.0.0",
"prettier": "^1.9.1",
"semver": "^5.4.1"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "./coverage/"
}
}