source: node_modules/comma-separated-tokens/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.7 KB
Line 
1{
2 "name": "comma-separated-tokens",
3 "version": "1.0.8",
4 "description": "Parse and stringify comma-separated tokens",
5 "license": "MIT",
6 "keywords": [
7 "dom",
8 "html",
9 "comma",
10 "separated",
11 "tokens",
12 "parse",
13 "stringify"
14 ],
15 "repository": "wooorm/comma-separated-tokens",
16 "bugs": "https://github.com/wooorm/comma-separated-tokens/issues",
17 "funding": {
18 "type": "github",
19 "url": "https://github.com/sponsors/wooorm"
20 },
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 "devDependencies": {
29 "browserify": "^16.0.0",
30 "nyc": "^15.0.0",
31 "prettier": "^1.0.0",
32 "remark-cli": "^7.0.0",
33 "remark-preset-wooorm": "^6.0.0",
34 "tape": "^4.0.0",
35 "tinyify": "^2.0.0",
36 "xo": "^0.25.0"
37 },
38 "scripts": {
39 "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
40 "build-bundle": "browserify . -s commaSeparatedTokens -o comma-separated-tokens.js",
41 "build-mangle": "browserify . -s commaSeparatedTokens -p tinyify -o comma-separated-tokens.min.js",
42 "build": "npm run build-bundle && npm run build-mangle",
43 "test-api": "node test",
44 "test-coverage": "nyc --reporter lcov tape test.js",
45 "test": "npm run format && npm run build && npm run test-coverage"
46 },
47 "prettier": {
48 "tabWidth": 2,
49 "useTabs": false,
50 "singleQuote": true,
51 "bracketSpacing": false,
52 "semi": false,
53 "trailingComma": "none"
54 },
55 "xo": {
56 "prettier": true,
57 "esnext": false,
58 "ignores": [
59 "comma-separated-tokens.js"
60 ]
61 },
62 "remarkConfig": {
63 "plugins": [
64 "preset-wooorm"
65 ]
66 }
67}
Note: See TracBrowser for help on using the repository browser.