-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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": "@baethon/extract-jsonld",
"version": "2.0.0",
"description": "Simple utility for extracting JSON-LD data from given URL",
"keywords": [
"jsdom",
"jsonld"
],
"main": "index.js",
"author": "Radoslaw Mejer <radmen@radmen.info>",
"license": "MIT",
"scripts": {
"pretest": "standard",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "jest",
"prepush": "npm run lint",
"tag:patch": "npm version patch -m 'chore(package): bump version to %s'",
"tag:minor": "npm version minor -m 'chore(package): bump version to %s'",
"tag:major": "npm version major -m 'chore(package): bump version to %s'"
},
"dependencies": {
"fluture": "^8.0.2",
"jsdom": "^11.6.2"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.4.2",
"nock": "^9.2.3",
"standard": "^11.0.0"
},
"files": [
"index.js"
],
"standard": {
"globals": [
"expect",
"beforeAll",
"afterEach",
"test",
"describe"
]
}
}