-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "meetup-web-mocks",
"version": "0.1.0",
"license": "MIT",
"description": "Meetup Web Mocks",
"author": "Meetup",
"engines": {
"node": "^14.19.0",
"yarn": "^1.21.1"
},
"scripts": {
"build": "babel src --out-dir lib",
"lint": "yarn run lint:base -- --fix",
"lint:base": "eslint . --ext .js, .jsx",
"modules:clean": "rm -rf node_modules",
"test": "yarn run lint:base"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/meetup/meetup-web-mocks.git"
},
"bugs": {
"url": "https://github.com/meetup/meetup-web-mocks/issues"
},
"homepage": "https://github.com/meetup/meetup-web-mocks#readme",
"peerDependencies": {},
"devDependencies": {
"@alrra/travis-scripts": "3.0.1",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"eslint": "4.18.2",
"eslint-plugin-react": "7.1.0"
}
}