UNPKG

1.72 kBJSONView Raw
1{
2 "name": "quotation",
3 "version": "1.1.2",
4 "description": "Quote a value",
5 "license": "MIT",
6 "keywords": [
7 "double",
8 "single",
9 "quote",
10 "quotation",
11 "dumb",
12 "smart",
13 "single",
14 "double",
15 "low",
16 "high",
17 "guillemet"
18 ],
19 "repository": "wooorm/quotation",
20 "bugs": "https://github.com/wooorm/quotation/issues",
21 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
22 "contributors": [
23 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
24 ],
25 "files": [
26 "index.js"
27 ],
28 "dependencies": {},
29 "devDependencies": {
30 "browserify": "^16.0.0",
31 "nyc": "^14.0.0",
32 "prettier": "^1.12.1",
33 "remark-cli": "^6.0.0",
34 "remark-preset-wooorm": "^4.0.0",
35 "tape": "^4.0.0",
36 "tinyify": "^2.5.0",
37 "xo": "^0.24.0"
38 },
39 "scripts": {
40 "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
41 "build-bundle": "browserify . -s quotation -o quotation.js",
42 "build-mangle": "browserify . -s quotation -p tinyify -o quotation.min.js",
43 "build": "npm run build-bundle && npm run build-mangle",
44 "test-api": "node test",
45 "test-coverage": "nyc --reporter lcov tape test.js",
46 "test": "npm run format && npm run build && npm run test-coverage"
47 },
48 "nyc": {
49 "check-coverage": true,
50 "lines": 100,
51 "functions": 100,
52 "branches": 100
53 },
54 "prettier": {
55 "tabWidth": 2,
56 "useTabs": false,
57 "singleQuote": true,
58 "bracketSpacing": false,
59 "semi": false,
60 "trailingComma": "none"
61 },
62 "xo": {
63 "prettier": true,
64 "esnext": false,
65 "ignore": [
66 "quotation.js"
67 ]
68 },
69 "remarkConfig": {
70 "plugins": [
71 "preset-wooorm"
72 ]
73 }
74}