-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
{
"name": "flapjax",
"author": "Michael Hurley <[email protected]> (buzzdecafe.com)",
"description": "Monadic AJAX module",
"version": "1.0.1",
"main": "dist/flapjax.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"publish:patch": "xyz -i patch",
"publish:minor": "xyz -i minor",
"publish:major": "xyz -i major",
"server": "node api",
"test": "concurrently --kill-others --success=first 'node api/index.js' 'karma start --single-run'",
"test:watch": "concurrently --kill-others 'node api/index.js' 'karma start --single-run=false'"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buzzdecafe/flapjax.git"
},
"keywords": [
"ajax",
"functional",
"monad",
"xhr",
"xmlhttprequest"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/buzzdecafe/flapjax/issues"
},
"homepage": "https://github.com/buzzdecafe/flapjax",
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"define",
"XMLHttpRequest"
]
},
"dependencies": {
"fluture": "^5.0.0"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"concurrently": "^2.1.0",
"cors": "^2.7.1",
"express": "^4.13.4",
"karma": "^0.13.21",
"karma-coverage": "^0.5.4",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^1.2.3",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"multer": "^1.1.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"standard-format": "^2.1.1",
"uglify": "^0.1.5",
"xyz": "^2.1.0"
}
}