-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@osspim/content-transformer",
"version": "9.0.1",
"description": "Validation and parsing for OSSPIM rich text content",
"main": "src/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "eslint src",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run validate",
"dev": "nodemon ./develop",
"dev:inspect": "nodemon --inspect-brk ./develop",
"validate": "npm run lint && npm run test",
"prepush": "npm run validate",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "[email protected]:ossgroupp/osspim-content-transformer.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ossgroupp/osspim-content-transformer/issues"
},
"homepage": "https://github.com/ossgroupp/osspim-content-transformer#readme",
"devDependencies": {
"conventional-changelog": "^3.1.24",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^0.14.3",
"jest": "^24.9.0",
"nodemon": "^1.17.5",
"prettier": "^2.2.1",
"release-it": "7.6.1"
},
"dependencies": {
"is-my-json-valid": "^2.17.2",
"isarray": "^2.0.4",
"ow": "^0.4.0",
"parse5": "^6.0.1"
},
"browserslist": [
"> 0.5%",
"IE 10",
"iOS > 8",
"Safari > 8"
],
"eslintConfig": {
"extends": [
"prettier"
],
"plugins": [
"prettier"
],
"env": {
"es2020": true,
"browser": true,
"node": true,
"jest": true
},
"rules": {
"no-plusplus": 0,
"import/prefer-default-export": 0
}
}
}