-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "contentful-response-parser",
"version": "1.2.2",
"description": "Parse Contentful HTTP API response and resolve all nested Asset and Entry links",
"keywords": [
"contentful"
],
"author": "Dan Hayden <dan@tutonics.com>",
"license": "MIT",
"main": "dist/contentful-response-parser.js",
"module": "dist/contentful-response-parser.es.js",
"umd:main": "dist/contentful-response-parser.umd.js",
"files": [
"dist"
],
"scripts": {
"pretest": "standard",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard --format",
"changelog": "standard-version",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublish": "npm run build"
},
"standard": {
"parser": "babel-eslint",
"ignore": "dist/**"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"babel-preset-env": "1.6.0",
"rollup": "0.45.2",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-uglify": "2.0.1",
"rollup-watch": "4.3.1",
"standard": "10.0.2",
"standard-version": "4.2.0",
"uglify-es": "3.0.24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danhayden/contentful-response-parser.git"
},
"bugs": {
"url": "https://github.com/danhayden/contentful-response-parser/issues"
},
"homepage": "https://github.com/danhayden/contentful-response-parser#readme"
}