-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.77 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
{
"name": "mitte",
"version": "0.1.0",
"description": "A small and simple general purpose middleware library",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib es",
"build": "npm run clean && npm run build:commonjs && npm run build:es",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "BABEL_ENV=es babel src --out-dir es",
"lint": "eslint src",
"test": "BABEL_ENV=commonjs mocha -r babel-register -r ./test/helpers/setup.js test/**/*.spec.js",
"test:cov": "BABEL_ENV=commonjs istanbul cover _mocha -- -r babel-register -r ./test/helpers/setup.js test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlcohen/mitte.git"
},
"keywords": [
"middleware",
"simple",
"general purpose"
],
"author": "Michael Cohen <[email protected]> (https://github.com/mlcohen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlcohen/mitte/issues"
},
"homepage": "https://github.com/mlcohen/mitte#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.23.0",
"babel-plugin-transform-es2015-classes": "^6.23.0",
"babel-plugin-transform-es2015-computed-properties": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-function-name": "^6.22.0",
"babel-plugin-transform-es2015-literals": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-es2015-object-super": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.23.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.22.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.22.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.22.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"eslint": "^3.17.1",
"istanbul": "v1.1.0-alpha.1",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"sinon": "^3.0.0",
"sinon-chai": "^2.12.0"
},
"dependencies": {
"lodash": "^4.17.4",
"lodash-es": "^4.17.4"
}
}