forked from justinfagnani/mixwith.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 958 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
38
39
{
"name": "mixwith",
"version": "0.1.1",
"description": "A simple, powerful mixin applier for JavaScript classes",
"main": "mixwith_es5.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"chai": "^3.4.1",
"event-stream": "^3.3.2",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1"
},
"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"
}