-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "letterboxd",
"description": "get public diary data for letterboxd users",
"exports": "./index.js",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"prettier": "prettier --write .",
"example": "node test/example.js",
"pretest": "npm run example && npm run prettier && npm run lint",
"test": "npm run test:js",
"test:js": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "npm run test:js -- --watch",
"lint": "eslint . --config .eslintrc.json"
},
"keywords": [
"letterboxd"
],
"repository": {
"type": "git",
"url": "https://github.com/zoetrope69/letterboxd.git"
},
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "27.4.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.7.0",
"nock": "13.3.6",
"prettier": "2.8.8",
"semantic-release": "19.0.5"
},
"release": {
"branches": [
"main"
]
}
}