-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
{
"name": "paste-html-to-govspeak",
"version": "0.4.0",
"description": "Converts HTML formatted rich content to govspeak format (a markdown extension library for government editors) when pasted from clipboard into a form input or textarea.",
"main": "dist/paste-html-to-markdown.js",
"scripts": {
"prebuild": "rm -rf dist examples/dist && mkdir dist examples/dist",
"build": "rollup -c",
"pretest": "npm run lint",
"test": "jest",
"lint": "standard",
"watch": "npm-watch"
},
"babel": {
"presets": ["@babel/preset-env"]
},
"browserslist": "defaults, IE 11",
"jest": {
"testEnvironment": "jsdom"
},
"standard": {
"ignore": [
"dist/*"
]
},
"files": [
"src",
"dist"
],
"watch": {
"build": "src/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alphagov/paste-html-to-govspeak.git"
},
"bugs": {
"url": "https://github.com/alphagov/paste-html-to-govspeak/issues"
},
"homepage": "https://github.com/alphagov/paste-html-to-govspeak#readme",
"author": {
"name": "GOV.UK Dev",
"email": "[email protected]"
},
"keywords": [
"govuk",
"govspeak"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^29.0.2",
"insert-text-at-cursor": "^0.3.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.2",
"npm-watch": "^0.13.0",
"rollup": "^2.26.10",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"standard": "^17.0.0",
"turndown": "^7.1.1"
},
"dependencies": {}
}