UNPKG

5.35 kBJSONView Raw
1{
2 "title": "CSON",
3 "name": "cson",
4 "version": "7.4.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 "coffeescript",
10 "cson",
11 "javascript",
12 "node",
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 "githubUsername": "bevry",
46 "githubRepository": "cson",
47 "githubSlug": "bevry/cson",
48 "npmPackageName": "cson"
49 }
50 },
51 "funding": "https://bevry.me/fund",
52 "author": "2012+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), Benjamin Lupton <b@lupton.cc> (https://balupton.com)",
53 "maintainers": [
54 "Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
55 ],
56 "contributors": [
57 "Attila Oláh <atl@google.com> (https://github.com/attilaolah)",
58 "Attila Oláh <attilaolah@google.com> (http://attilaolah.eu/)",
59 "Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)",
60 "Claudius Nicolae <claudius.nicolae@gmail.com> (https://github.com/clyfe)",
61 "Jason Karns <jason.karns@gmail.com> (https://github.com/jasonkarns)",
62 "Joël Perras <joel@nerderati.com> (https://github.com/jperras)",
63 "Linus Gustav Larsson Thiel <linus@hanssonlarsson.se> (https://github.com/linus)",
64 "Rob Loach <robloach@gmail.com> (https://github.com/RobLoach)",
65 "Ryan LeFevre <meltingice8917@gmail.com> (https://github.com/meltingice)",
66 "Tushar Kant <me@tushar.works> (https://github.com/nanuclickity)",
67 "ZHANG Cheng <czhang.oss@gmail.com> (https://github.com/zhangcheng)",
68 "Zearin (https://github.com/Zearin)",
69 "evinugur (https://github.com/evinugur)"
70 ],
71 "bugs": {
72 "url": "https://github.com/bevry/cson/issues"
73 },
74 "repository": {
75 "type": "git",
76 "url": "https://github.com/bevry/cson.git"
77 },
78 "engines": {
79 "node": ">=10"
80 },
81 "editions": [
82 {
83 "description": "CoffeeScript source code with Require for modules",
84 "directory": "source",
85 "entry": "index.coffee",
86 "tags": [
87 "coffeescript",
88 "require"
89 ],
90 "engines": false
91 },
92 {
93 "description": "CoffeeScript compiled for Node.js with Require for modules",
94 "directory": "edition-esnext",
95 "entry": "index.js",
96 "tags": [
97 "javascript",
98 "esnext",
99 "require"
100 ],
101 "engines": {
102 "node": "10 || 12 || 13 || 14"
103 }
104 }
105 ],
106 "bin": {
107 "cson2json": "bin.js",
108 "json2cson": "bin.js"
109 },
110 "type": "commonjs",
111 "main": "edition-esnext/index.js",
112 "dependencies": {
113 "coffeescript": "^2.5.1",
114 "cson-parser": "^4.0.4",
115 "extract-opts": "^4.3.0",
116 "requirefresh": "^4.1.0",
117 "safefs": "^6.1.0"
118 },
119 "devDependencies": {
120 "@bevry/update-contributors": "^1.6.0",
121 "assert-helpers": "^6.5.0",
122 "coffeelint": "^2.1.0",
123 "kava": "^5.1.0",
124 "projectz": "^2.2.0",
125 "safeps": "^10.1.0",
126 "valid-directory": "^2.0.0"
127 },
128 "scripts": {
129 "our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
130 "our:compile": "npm run our:compile:edition-esnext",
131 "our:compile:edition-esnext": "coffee -bco ./edition-esnext ./source",
132 "our:deploy": "echo no need for this project",
133 "our:meta": "npm run our:meta:contributors && npm run our:meta:projectz",
134 "our:meta:contributors": "update-contributors",
135 "our:meta:projectz": "projectz compile",
136 "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",
137 "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
138 "our:release:check-dirty": "git diff --exit-code",
139 "our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
140 "our:release:push": "git push origin master && git push origin --tags",
141 "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\"",
142 "our:setup": "npm run our:setup:install",
143 "our:setup:install": "npm install",
144 "our:test": "npm run our:verify && npm test",
145 "our:verify": "npm run our:verify:coffeelint && npm run our:verify:directory",
146 "our:verify:coffeelint": "coffeelint ./source",
147 "our:verify:directory": "valid-directory",
148 "test": "node ./edition-esnext/test.js"
149 }
150}