-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
47
48
49
50
51
52
53
{
"name": "simple-plist",
"author": "Joe Wollard",
"license": "MIT",
"homepage": "https://github.com/wollardj/node-simple-plist.git",
"repository": {
"type": "git",
"url": "https://github.com/wollardj/node-simple-plist.git"
},
"version": "1.1.1",
"description": "A wrapper utility for interacting with plist data.",
"main": "simple-plist.js",
"files": [
"simple-plist.js"
],
"keywords": [
"plist",
"binary",
"bplist",
"xml"
],
"scripts": {
"clean": "rimraf __tests__/write-test* coverage",
"jest": "jest --coverage ",
"jest:verbose": "jest --coverage --verbose",
"test": "run-s clean jest",
"test:verbose": "run-s clean jest:verbose",
"prepare": "husky install"
},
"dependencies": {
"bplist-creator": "0.1.0",
"bplist-parser": "0.3.0",
"plist": "^3.0.4"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"husky": ">=6",
"jest": "^27.2.5",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}