-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "es-interface",
"version": "0.0.1",
"description": "Provides a way to 'add' external functionality to classes in a sort of interface/mixin hybrid",
"main": "index.js",
"scripts": {
"test": "none"
},
"repository": {
"type": "git",
"url": "git+https://github.com/averypfeiffer/es-interface.git"
},
"keywords": [
"es6"
],
"author": "apfeiffer",
"license": "ISC",
"bugs": {
"url": "https://github.com/averypfeiffer/es-interface/issues"
},
"homepage": "https://github.com/averypfeiffer/es-interface#readme",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-import": "^1.0.1",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"eslint-plugin-flowtype": "^2.29.2",
"flow-bin": "^0.37.4",
"grunt-babel": "^6.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-newer": "^1.2.0",
"grunt-webpack": "^1.0.18",
"ifdef-loader": "^1.0.3",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"load-grunt-tasks": "^3.5.2",
"remove-flow-types-loader": "0.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "*"
},
"dependencies": {
"bluebird": "^3.4.6",
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"querystring": "^0.2.0",
"util": "^0.10.3",
"uuid": "^3.0.1"
}
}