62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
![]() |
{
|
||
|
"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"
|
||
|
},
|
||
|
"husky": {
|
||
|
"hooks": {
|
||
|
"pre-commit": "npx run-s test",
|
||
|
"pre-push": "npx run-s test"
|
||
|
}
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.js": [
|
||
|
"eslint --fix",
|
||
|
"prettier --write",
|
||
|
"git add"
|
||
|
]
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"bplist-creator": "0.0.8",
|
||
|
"bplist-parser": "0.2.0",
|
||
|
"plist": "^3.0.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "^7.10.0",
|
||
|
"eslint-config-airbnb": "^18.2.0",
|
||
|
"eslint-config-prettier": "^6.12.0",
|
||
|
"eslint-plugin-import": "^2.22.1",
|
||
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
||
|
"eslint-plugin-react": "^7.21.2",
|
||
|
"husky": "^4.3.0",
|
||
|
"jest": "^26.4.2",
|
||
|
"lint-staged": "^10.4.0",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"prettier": "^2.1.2",
|
||
|
"rimraf": "^3.0.2"
|
||
|
}
|
||
|
}
|