forked from prismicio/prismic-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "prismic-javascript",
"description": "JavaScript development kit for prismic.io",
"license": "Apache-2.0",
"url": "https://github.com/prismicio/prismic-javascript",
"keywords": [
"prismic",
"prismic.io",
"cms",
"content",
"api"
],
"version": "1.5.0-beta.3",
"devDependencies": {
"chai": "^4.1.1",
"json-loader": "^0.5.4",
"mocha": "^3.5.0",
"ts-loader": "^2.0.3",
"tslint": "^5.1.0",
"tslint-config-airbnb": "^5.2.1",
"typedoc": "^0.8.0",
"typescript": "^2.3.2",
"webpack": "^3.5.5",
"yargs": "^8.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/prismicio/prismic-javascript.git"
},
"main": "dist/prismic-javascript.min.js",
"types": "./d.ts/index.d.ts",
"scripts": {
"build": "webpack -p",
"dev": "webpack -d --watch",
"check": "tsc --pretty --noEmit --project ./tsconfig.json --watch",
"test": "mocha",
"prepublish": "npm run build; npm run docs",
"docs": "typedoc --mode file --out ./docs/ ./src/index.ts",
"lint": "tslint src/**/*.ts -e src/lru.ts -e src/Cookies.ts"
},
"dependencies": {
"cross-fetch": "^2.2.0"
}
}