-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.67 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
71
72
73
74
75
76
77
78
{
"name": "@motorcycle/http",
"version": "2.2.3",
"description": "Standard HTTP driver for Motorcycle.js",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/",
"test-node": "mocha test/node.js",
"pretest": "npm run compile-lib",
"test": "npm run lint && npm run test-node",
"browserify": "browserify src/index.js -t babelify -t browserify-shim --standalone MotorcycleHTTPDriver --exclude most --outfile dist/motorcycle-http-driver.js",
"uglify": "uglifyjs dist/motorcycle-http-driver.js -o dist/motorcycle-http-driver.min.js",
"deps": "npm install && npm prune && validate-commit-msg",
"start": "npm run deps",
"precompile-lib": "rimraf lib/ && mkdirp lib",
"compile-lib": "babel -d lib/ src/",
"dist": "npm run browserify && npm run uglify",
"prepublish": "npm run compile-lib",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm run dist; git commit -a -m 'chore(dist): build'; release patch && npm publish --access=public",
"release-minor": "git checkout master && npm run dist; git commit -a -m 'chore(dist): build'; release minor && npm publish --access=public",
"release-major": "git checkout master && npm run dist; git commit -a -m 'chore(dist): build'; release major && npm publish --access=public"
},
"browserify-shim": {
"most": "global:most"
},
"repository": {
"type": "git",
"url": "https://github.com/motorcyclejs/http"
},
"keywords": [
"HTTP",
"Driver",
"motorcyclejs",
"motorcycle",
"cycle",
"cyclejs"
],
"author": "Tylor Steinberger167 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/motorcyclejs/http/issues"
},
"homepage": "https://github.com/motorcyclejs/http#readme",
"contributors": [
"Frederik Krautwald <[email protected]> (https://github.com/Frikki)"
],
"dependencies": {
"@most/hold": "^1.1.0",
"@motorcycle/core": "^1.2.1",
"superagent": "^1.8.3"
},
"devDependencies": {
"@most/hold": "^1.1.1",
"@motorcycle/core": "^1.2.1",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"body-parser": "^1.15.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"cli-release": "^1.0.4",
"cookie-parser": "^1.4.1",
"eslint": "^1.10.3",
"eslint-config-cycle": "^3.2.0",
"eslint-plugin-cycle": "^1.0.2",
"eslint-plugin-no-class": "^0.1.0",
"express": "^4.13.4",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"most": "^0.18.7",
"rimraf": "^2.5.2",
"uglify-js": "^2.6.2",
"validate-commit-message": "^3.0.1"
}
}