-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
129 lines (129 loc) · 3.84 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "mastarm",
"description": "Conveyal JavaScript development toolbelt.",
"main": "bin/mastarm",
"engines": {
"node": ">=10",
"npm": ">=5"
},
"bin": {
"mastarm": "bin/mastarm",
"mastarm-build": "bin/mastarm-build",
"mastarm-commit": "bin/mastarm-commit",
"mastarm-deploy": "bin/mastarm-deploy",
"mastarm-flow": "bin/mastarm-flow",
"mastarm-format": "bin/mastarm-format",
"mastarm-lint": "bin/mastarm-lint",
"mastarm-lint-messages": "bin/mastarm-lint-messages",
"mastarm-prepublish": "bin/mastarm-prepublish",
"mastarm-test": "bin/mastarm-test"
},
"scripts": {
"cover": "yarn run jest --coverage --coverage-paths bin",
"flow": "bin/mastarm flow",
"jest": "bin/mastarm test --run-in-band --env test --test-environment node",
"lint": "bin/mastarm lint lib __tests__",
"pretest": "yarn",
"semantic-release": "semantic-release",
"test": "yarn run lint && yarn run flow && yarn run jest"
},
"repository": {
"type": "git",
"url": "https://github.com/conveyal/mastarm"
},
"keywords": [
"babel",
"browserify",
"react",
"configuration"
],
"author": "Conveyal",
"license": "MIT",
"bugs": {
"url": "https://github.com/conveyal/mastarm/issues"
},
"homepage": "https://github.com/conveyal/mastarm",
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.5.5",
"aws-sdk": "^2.414.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-react-require": "^3.1.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"browserify-markdown": "2.0.1",
"budo": "^11.6.1",
"caniuse-lite": "^1.0.30001228",
"chokidar": "^3.2.2",
"commander": "^3.0.2",
"commitizen": "^4.0.3",
"concat-stream": "^2.0.0",
"core-js": "2",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^3.0.2",
"envify": "^4.1.0",
"errorify": "^0.3.1",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"execa": "^3.2.0",
"exorcist": "^1.0.1",
"flow-bin": "0.84.0",
"flow-runtime": "^0.17.0",
"fs-extra": "^8.1.0",
"git-repo-is-up-to-date": "^1.1.0",
"glob": "^7.1.3",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.1.0",
"jest-yaml-transform": "^0.2.0",
"lodash.uniq": "^4.5.0",
"middleware-proxy": "^2.0.5",
"mime": "^2.4.0",
"mkdirp": "^0.5.1",
"node-emoji": "^1.10.0",
"postcss": "^7.0.14",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.6.0",
"postcss-reporter": "^6.0.1",
"postcss-safe-parser": "^4.0.1",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.0",
"slack-node": "^0.1.8",
"sshpk": "^1.16.1",
"this-commit": "^1.0.0",
"through2": "^3.0.1",
"uglifyify": "^5.0.1",
"username": "^5.1.0",
"uuid": "^3.3.2",
"watchify": "^3.11.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"bootstrap": "^4.3.1",
"jest-transform-stub": "^2.0.0",
"react": "^16.8.3",
"semantic-release": "^15.13.3"
},
"standard": {
"parser": "babel-eslint"
}
}