-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "mitragyna",
"version": "0.0.3",
"description": "A library for managing ActiveResources as React components",
"main": "build/mitragyna.js",
"scripts": {
"test": "grunt spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicklandgrebe/mitragyna.git"
},
"keywords": [
"react",
"active-resource"
],
"author": "Nick Landgrebe",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicklandgrebe/mitragyna/issues"
},
"homepage": "https://github.com/nicklandgrebe/mitragyna#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"grunt": "0.x.x",
"grunt-babel": "^7.0.0",
"grunt-contrib-clean": "0.5.x",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "0.4.x",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "0.5.x",
"grunt-umd": "^2.4.0",
"load-grunt-tasks": "^3.5.2"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"shallowequal": "^1.0.2",
"underscore": "^1.8.3"
}
}