-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 880 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
{
"name": "crud-muffins",
"version": "0.0.5",
"description": "A half-baked solution to UI CRUD operations.",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewSouthpaw/crud-muffins.git"
},
"keywords": [
"crud",
"react"
],
"author": "Andrew Smith <andrewsmith@alumni.stanford.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewSouthpaw/crud-muffins/issues"
},
"homepage": "https://github.com/AndrewSouthpaw/crud-muffins#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.12.1",
"babel-plugin-ramda": "^2.0.0"
},
"dependencies": {
"ramda": "^0.27.0"
}
}