-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
{
"name": "github-languages-watcher",
"private": true,
"version": "0.0.0-development",
"description": "Job that updates the GitHubLanguagesClient when it detects new languages on GitHub",
"main": "build/index.js",
"scripts": {
"build": "babel src/ -d build/ --delete-dir-on-start --copy-files",
"test": "jest --coverage",
"lint": "eslint --ext .js .",
"update-files": "node build/index.js"
},
"keywords": [
"github",
"languages"
],
"author": "jae.b.bradley@gmail.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.44",
"@babel/core": "^7.0.0-beta.44",
"@babel/plugin-transform-async-to-generator": "^7.0.0-beta.44",
"@babel/plugin-transform-runtime": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/runtime": "^7.0.0-beta.44",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"codecov": "^3.0.0",
"enzyme": "^3.3.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "^22.4.3"
},
"dependencies": {
"axios": "^0.18.0",
"camelize": "^1.0.0",
"child-process-promise": "^2.2.1",
"dotenv": "^5.0.1",
"fs-extra": "^5.0.0",
"octonode": "^0.9.2",
"yamljs": "^0.3.0"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"github-languages-client"
]
}
}