1 | {
|
---|
2 | "name": "property-information",
|
---|
3 | "version": "5.6.0",
|
---|
4 | "description": "Information for HTML properties",
|
---|
5 | "license": "MIT",
|
---|
6 | "keywords": [
|
---|
7 | "html",
|
---|
8 | "property",
|
---|
9 | "attribute",
|
---|
10 | "information",
|
---|
11 | "info"
|
---|
12 | ],
|
---|
13 | "repository": "wooorm/property-information",
|
---|
14 | "bugs": "https://github.com/wooorm/property-information/issues",
|
---|
15 | "funding": {
|
---|
16 | "type": "github",
|
---|
17 | "url": "https://github.com/sponsors/wooorm"
|
---|
18 | },
|
---|
19 | "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
---|
20 | "contributors": [
|
---|
21 | "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
---|
22 | "Dustin Deus <deusdustin@gmail.com> (http://starptech.de)",
|
---|
23 | "Andrew Burgess <andrew@andrewburgess.io>"
|
---|
24 | ],
|
---|
25 | "files": [
|
---|
26 | "index.js",
|
---|
27 | "hast-to-react.json",
|
---|
28 | "html.js",
|
---|
29 | "svg.js",
|
---|
30 | "normalize.js",
|
---|
31 | "find.js",
|
---|
32 | "lib/"
|
---|
33 | ],
|
---|
34 | "dependencies": {
|
---|
35 | "xtend": "^4.0.0"
|
---|
36 | },
|
---|
37 | "devDependencies": {
|
---|
38 | "alpha-sort": "^3.0.0",
|
---|
39 | "arr-union": "^3.0.0",
|
---|
40 | "bail": "^1.0.0",
|
---|
41 | "browserify": "^17.0.0",
|
---|
42 | "concat-stream": "^2.0.0",
|
---|
43 | "html-element-attributes": "^2.0.0",
|
---|
44 | "html-event-attributes": "^1.0.0",
|
---|
45 | "mdast-zone": "^4.0.0",
|
---|
46 | "nyc": "^15.0.0",
|
---|
47 | "object.values": "^1.0.0",
|
---|
48 | "prettier": "^2.0.0",
|
---|
49 | "remark-cli": "^9.0.0-alpha.1",
|
---|
50 | "remark-preset-wooorm": "^8.0.0",
|
---|
51 | "svg-element-attributes": "^1.0.0",
|
---|
52 | "svg-event-attributes": "^1.0.0",
|
---|
53 | "tape": "^5.0.0",
|
---|
54 | "tinyify": "^3.0.0",
|
---|
55 | "unist-builder": "^2.0.0",
|
---|
56 | "xo": "^0.33.0"
|
---|
57 | },
|
---|
58 | "scripts": {
|
---|
59 | "generate": "node script/generate-react && node script/generate-exceptions",
|
---|
60 | "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
|
---|
61 | "build-bundle": "browserify index.js -s propertyInformation > property-information.js",
|
---|
62 | "build-mangle": "browserify index.js -s propertyInformation -p tinyify > property-information.min.js",
|
---|
63 | "build": "npm run build-bundle && npm run build-mangle",
|
---|
64 | "test-api": "node test",
|
---|
65 | "test-coverage": "nyc --reporter lcov tape test.js",
|
---|
66 | "test": "npm run generate && npm run format && npm run build && npm run test-coverage"
|
---|
67 | },
|
---|
68 | "nyc": {
|
---|
69 | "check-coverage": true,
|
---|
70 | "lines": 100,
|
---|
71 | "functions": 100,
|
---|
72 | "branches": 100
|
---|
73 | },
|
---|
74 | "prettier": {
|
---|
75 | "tabWidth": 2,
|
---|
76 | "useTabs": false,
|
---|
77 | "singleQuote": true,
|
---|
78 | "bracketSpacing": false,
|
---|
79 | "semi": false,
|
---|
80 | "trailingComma": "none"
|
---|
81 | },
|
---|
82 | "xo": {
|
---|
83 | "prettier": true,
|
---|
84 | "esnext": false,
|
---|
85 | "rules": {
|
---|
86 | "unicorn/no-fn-reference-in-iterator": "off",
|
---|
87 | "unicorn/prefer-exponentiation-operator": "off",
|
---|
88 | "unicorn/prefer-includes": "off",
|
---|
89 | "guard-for-in": "off",
|
---|
90 | "prefer-exponentiation-operator": "off"
|
---|
91 | },
|
---|
92 | "ignore": [
|
---|
93 | "property-information.js"
|
---|
94 | ]
|
---|
95 | },
|
---|
96 | "remarkConfig": {
|
---|
97 | "plugins": [
|
---|
98 | "./script/list",
|
---|
99 | "preset-wooorm"
|
---|
100 | ]
|
---|
101 | }
|
---|
102 | }
|
---|