forked from cosmicjs/cosmicjs-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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": "cosmicjs",
"version": "3.2.14",
"description": "The official client module for Cosmic JS. This module helps you easily add dynamic content to your website or application.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint index.js",
"dev": "nodemon test.js && eslint test.js",
"clean": "rm -f ./cosmicjs.browser.min.js",
"build": "npm run clean; webpack -p; babel index.js --out-dir dist",
"test": "./node_modules/.bin/mocha --reporter spec",
"prepublish": "npm run build"
},
"engines": {
"node": ">=6.0"
},
"dependencies": {
"axios": "^0.17.1",
"babel-cli": "^6.26.0",
"blanket": "^1.2.3",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"form-data": "^2.3.2",
"multer": "^1.3.0"
},
"devDependencies": {
"archiver": "^2.1.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.11.0",
"mocha": "^5.1.0",
"nock": "^9.2.5",
"nodemon": "^1.17.3",
"nyc": "^11.7.0",
"rewire": "^3.0.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmicjs/cosmicjs-node.git"
},
"keywords": [
"cms",
"node",
"content",
"api"
],
"author": "Tony Spiro <tspiro@tonyspiro.com> (http://tonyspiro.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cosmicjs/cosmicjs-node/issues"
},
"homepage": "https://github.com/cosmicjs/cosmicjs-node#readme"
}