-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "jira-2-omnifocus",
"version": "1.2.0",
"description": "Chrome extension for sending JIRA tickets to OmniFocus.",
"main": "index.js",
"scripts": {
"clean": "npm run gulp clean",
"build": "npm run gulp build",
"gulp": "./node_modules/.bin/gulp",
"lint": "npm run gulp lint",
"test": "./node_modules/.bin/mocha 'test/**/*.spec.js'",
"test:unit": "./node_modules/.bin/mocha 'test/unit/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prometheas/jira-2-omnifocus.git"
},
"author": "John Lianoglou <https://github.com/prometheas>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prometheas/jira-2-omnifocus/issues"
},
"homepage": "https://github.com/prometheas/jira-2-omnifocus#readme",
"private": true,
"devDependencies": {
"bower": "^1.7.9",
"chai": "^3.5.0",
"chai-fs-latest": "^0.1.0",
"css-lint": "^1.0.1",
"del": "^2.2.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"gulp": "^4.0.2",
"gulp-browserify": "^0.5.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^7.0.2",
"gulp-sass": "^4.1.0",
"gulp-scss-lint": "^1.0.0",
"gulp-shell": "^0.8.0",
"mocha": "^8.1.1",
"shelljs": "^0.7.4",
"sinon": "^1.17.6"
},
"dependencies": {
"gulp-cli": "^2.3.0",
"lodash": "^4.17.19"
}
}