UNPKG

5.09 kBJSONView Raw
1{
2 "title": "CSON",
3 "name": "cson",
4 "version": "6.9.0",
5 "description": "CoffeeScript-Object-Notation Parser. Same as JSON but for CoffeeScript objects.",
6 "homepage": "https://github.com/bevry/cson",
7 "license": "MIT",
8 "keywords": [
9 "javascript",
10 "coffeescript",
11 "json",
12 "cson",
13 "parse",
14 "stringify"
15 ],
16 "badges": {
17 "list": [
18 "travisci",
19 "npmversion",
20 "npmdownloads",
21 "daviddm",
22 "daviddmdev",
23 "---",
24 "githubsponsors",
25 "patreon",
26 "flattr",
27 "liberapay",
28 "buymeacoffee",
29 "opencollective",
30 "crypto",
31 "paypal",
32 "wishlist"
33 ],
34 "config": {
35 "githubSponsorsUsername": "balupton",
36 "buymeacoffeeUsername": "balupton",
37 "cryptoURL": "https://bevry.me/crypto",
38 "flattrUsername": "balupton",
39 "liberapayUsername": "bevry",
40 "opencollectiveUsername": "bevry",
41 "patreonUsername": "bevry",
42 "paypalURL": "https://bevry.me/paypal",
43 "wishlistURL": "https://bevry.me/wishlist",
44 "travisTLD": "com"
45 }
46 },
47 "funding": "https://bevry.me/fund",
48 "author": "2012+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
49 "maintainers": [
50 "Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
51 ],
52 "contributors": [
53 "Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
54 "Attila Oláh <attilaolah@google.com> (http://attilaolah.eu/)",
55 "evinugur (https://github.com/evinugur)",
56 "Jason Karns <jason.karns@gmail.com> (http://jasonkarns.com)",
57 "Joël Perras <joel@nerderati.com> (http://nerderati.com)",
58 "Linus Gustav Larsson Thiel <linus@hanssonlarsson.se> (http://yesbabyyes.se/)",
59 "Tushar Kant <me@tushar.works> (http://indiez.io)",
60 "Claudius Nicolae <claudius.nicolae@gmail.com> (https://github.com/clyfe)",
61 "Rob Loach <robloach@gmail.com> (http://robloach.net)",
62 "Ryan LeFevre <meltingice8917@gmail.com> (http://meltingice.net)",
63 "Zearin (https://github.com/Zearin)",
64 "ZHANG Cheng <czhang.oss@gmail.com> (http://about.me/zhangcheng77)",
65 "Attila Oláh <atl@google.com> (http://attilaolah.eu)",
66 "dependabot-preview[bot] (http://github.com/apps/dependabot-preview)"
67 ],
68 "bugs": {
69 "url": "https://github.com/bevry/cson/issues"
70 },
71 "repository": {
72 "type": "git",
73 "url": "https://github.com/bevry/cson.git"
74 },
75 "engines": {
76 "node": ">=8"
77 },
78 "editions": [
79 {
80 "description": "coffeescript source code with require for modules",
81 "directory": "source",
82 "entry": "index.coffee",
83 "tags": [
84 "coffeescript",
85 "require"
86 ],
87 "engines": false
88 },
89 {
90 "description": "coffeescript compiled for Node.js with require for modules",
91 "directory": "edition-esnext",
92 "entry": "index.js",
93 "tags": [
94 "javascript",
95 "esnext",
96 "require"
97 ],
98 "engines": {
99 "node": "8 || 10 || 12 || 13"
100 }
101 }
102 ],
103 "bin": {
104 "cson2json": "bin.js",
105 "json2cson": "bin.js"
106 },
107 "type": "commonjs",
108 "main": "edition-esnext/index.js",
109 "dependencies": {
110 "coffeescript": "^2.4.1",
111 "cson-parser": "^4.0.3",
112 "extract-opts": "^4.3.0",
113 "requirefresh": "^3.3.0",
114 "safefs": "^5.5.0"
115 },
116 "devDependencies": {
117 "assert-helpers": "^5.8.0",
118 "coffeelint": "^2.1.0",
119 "kava": "^4.4.0",
120 "projectz": "^1.16.0",
121 "safeps": "^9.3.0",
122 "valid-directory": "^1.6.0"
123 },
124 "scripts": {
125 "our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
126 "our:compile": "npm run our:compile:edition-esnext",
127 "our:compile:edition-esnext": "coffee -bco ./edition-esnext ./source",
128 "our:deploy": "echo no need for this project",
129 "our:meta": "npm run our:meta:projectz",
130 "our:meta:projectz": "projectz compile",
131 "our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push",
132 "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
133 "our:release:check-dirty": "git diff --exit-code",
134 "our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
135 "our:release:push": "git push origin master && git push origin --tags",
136 "our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"",
137 "our:setup": "npm run our:setup:install",
138 "our:setup:install": "npm install",
139 "our:test": "npm run our:verify && npm test",
140 "our:verify": "npm run our:verify:coffeelint && npm run our:verify:directory",
141 "our:verify:coffeelint": "coffeelint ./source",
142 "our:verify:directory": "npx valid-directory",
143 "test": "node ./edition-esnext/test.js"
144 }
145}