-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "gifit-extension",
"version": "2.0.2",
"description": "Make GIFs from YouTube videos in Chrome & Firefox",
"repository": {
"type": "git",
"url": "https://github.com/Fauntleroy/GIFit.git"
},
"keywords": [
"GIF",
"youtube",
"Chrome",
"Firefox",
"extension"
],
"author": "Timothy Kempf",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fauntleroy/GIFit/issues"
},
"scripts": {
"build": "npm-run-all build:*",
"build:copy": "cpx 'src/*.{png,json}' dist --clean",
"build:css": "lessc src/content.less dist/content.css",
"build:js": "browserify src/content.jsx -o dist/content.js -t [ babelify ] -t [ brfs ]",
"lint": "eslint src/*/**.{js,jsx} --ignore-pattern \"src/vendor/**/*\"",
"watch": "npm-run-all -p watch:*",
"watch:copy": "chokidar 'src/*.{png,json}' -c 'npm run build:copy'",
"watch:css": "chokidar src/**/*.less -c 'npm run build:css'",
"watch:js": "watchify src/content.jsx -o dist/content.js -t [ babelify ] -t [ brfs ]",
"test": "zuul -- test/**/*{.js,.jsx}",
"test:browser": "zuul --local 55555 -- test/**/*{.js,.jsx}"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@meadow/eslint-config": "^5.0.3",
"babel-eslint": "^10.0.3",
"babelify": "^10.0.0",
"brfs": "^1.4.0",
"browserify": "^16.5.0",
"chokidar-cli": "^2.1.0",
"core-js": "^3.4.3",
"cpx": "^1.5.0",
"eslint": "^6.7.1",
"gif.js": "^0.2.0",
"less": "^3.10.3",
"npm-run-all": "^4.1.5",
"simple-mock": "^0.2.8",
"tape": "^3.5.0",
"watchify": "^2.6.2",
"zuul": "^3.2.0"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}