-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"name": "prismic-loader",
"version": "1.0.0",
"description": "Module for loading Prismic pages",
"main": "lib/index.js",
"files": [],
"scripts": {
"documentation": "jsdoc2md ./src/*.js > README.md",
"prepare": "node_modules/@babel/cli/bin/babel.js src --out-dir lib --ignore **/__tests__",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trolleymusic/prismic-loader.git"
},
"author": "Wayne Durack <@trolleymusic>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Trolleymusic/prismic-loader/issues"
},
"homepage": "https://github.com/Trolleymusic/prismic-loader#readme",
"dependencies": {
"prismic-javascript": "^2.7.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"jsdoc-to-markdown": "^6.0.1",
"standard": "^14.3.3"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "current"
}
}
]
],
"sourceMaps": "inline"
}
}