-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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": "strava-bulk-edit",
"description": "A plugin to add bulk editing to activities on Strava.com.",
"version": "1.0.9",
"author": "Luke Karrys <luke@lukekarrys.com>",
"browser": "dist/StravaBulkEdit.js",
"browserify": {
"transform": [
"babelify"
]
},
"bugs": {
"url": "https://github.com/lukekarrys/strava-bulk-edit/issues"
},
"dependencies": {
"lodash.pull": "^4.1.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.4.0",
"electron": "^1.6.11",
"git-validate": "^2.2.2",
"rimraf": "^2.6.1",
"standard": "^10.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"tape-run": "^3.0.0",
"webpack": "^3.4.1"
},
"files": [
"dist/*"
],
"homepage": "https://github.com/lukekarrys/strava-bulk-edit",
"keywords": [
"strava"
],
"license": "MIT",
"main": "dist/StravaBulkEdit.js",
"pre-commit": [
"lint",
"validate",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/lukekarrys/strava-bulk-edit.git"
},
"scripts": {
"debug": "npm run development && cat dist/StravaBulkEdit.dev.js | pbcopy",
"debug-prod": "npm run production && cat dist/StravaBulkEdit.js | pbcopy",
"development": "webpack --bail src/index.js dist/StravaBulkEdit.dev.js",
"lint": "standard",
"preversion": "npm run development && npm run production && npm run validate && npm run lint",
"production": "NODE_ENV=production webpack --bail -p src/index.js dist/StravaBulkEdit.js",
"test": "browserify test/index.js | tape-run | tap-spec",
"validate": "npm ls >/dev/null"
},
"standard": {
"ignore": [
"dist/**"
],
"parser": "babel-eslint"
}
}