-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.47 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
{
"name": "munar-build",
"author": "Sooyou",
"contributors": [
"brookiebeast",
"faw",
"René Kooi <rene@kooi.me>",
"schrobby"
],
"dependencies": {
"babel-preset-munar": "file:packages/babel-preset-munar",
"munar": "file:packages/munar",
"munar-adapter-plugdj": "file:packages/munar-adapter-plugdj",
"munar-adapter-slack": "file:packages/munar-adapter-slack",
"munar-adapter-uwave": "file:packages/munar-adapter-uwave",
"munar-core": "file:packages/munar-core",
"munar-helper-booth-lockskip": "file:packages/munar-helper-booth-lockskip",
"munar-plugin-antispam": "file:packages/munar-plugin-antispam",
"munar-plugin-chat-log": "file:packages/munar-plugin-chat-log",
"munar-plugin-config": "file:packages/munar-plugin-config",
"munar-plugin-dj-history-skip": "file:packages/munar-plugin-dj-history-skip",
"munar-plugin-emotes": "file:packages/munar-plugin-emotes",
"munar-plugin-events-calendar": "file:packages/munar-plugin-events-calendar",
"munar-plugin-greetings": "file:packages/munar-plugin-greetings",
"munar-plugin-karma": "file:packages/munar-plugin-karma",
"munar-plugin-media-blacklist": "file:packages/munar-plugin-media-blacklist",
"munar-plugin-reddit-feed": "file:packages/munar-plugin-reddit-feed",
"munar-plugin-serve": "file:packages/munar-plugin-serve",
"munar-plugin-system": "file:packages/munar-plugin-system",
"munar-plugin-triggers": "file:packages/munar-plugin-triggers",
"munar-plugin-usage": "file:packages/munar-plugin-usage",
"munar-plugin-user-log": "file:packages/munar-plugin-user-log",
"munar-plugin-waitlist-raffle": "file:packages/munar-plugin-waitlist-raffle"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"babel-eslint": "^10.1.0",
"chalk": "^2.4.2",
"del": "^5.1.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-newer": "^1.4.0",
"gulp-plumber": "^1.2.1",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"standard": "^11.0.1",
"through2": "^3.0.1"
},
"engines": {
"node": ">= 4"
},
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"private": true,
"scripts": {
"build": "gulp",
"jest": "jest packages/*/src",
"lint": "standard gulpfile.js packages/*/src/**/*.js",
"prepare": "npm run build",
"prerelease": "gulp prepublish",
"test": "npm run jest && npm run lint",
"watch": "gulp watch"
},
"standard": {
"parser": "babel-eslint"
}
}