forked from justinfagnani/mixwith.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 903 Bytes
/
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
{
"name": "mixwith",
"version": "0.1.1",
"description": "A simple, powerful mixin applier for JavaScript classes",
"main": "mixwith.js",
"module": "dist/mixwith.min.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"babel-plugin-transform-es2015-modules-umd": "^6.1.18",
"chai": "^3.4.1",
"event-stream": "^3.3.2",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.0"
},
"scripts": {
"test": "mocha build/test",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinfagnani/mixwith.js.git"
},
"keywords": [
"mixin",
"mixins",
"classes"
],
"author": "Jusitn Fagnani <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/justinfagnani/mixwith.js/issues"
},
"homepage": "https://github.com/justinfagnani/mixwith.js#readme"
}