UNPKG

5 kBJSONView Raw
1{
2 "title": "CSON",
3 "name": "cson",
4 "version": "7.0.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 "json",
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 ],
67 "bugs": {
68 "url": "https://github.com/bevry/cson/issues"
69 },
70 "repository": {
71 "type": "git",
72 "url": "https://github.com/bevry/cson.git"
73 },
74 "engines": {
75 "node": ">=10"
76 },
77 "editions": [
78 {
79 "description": "CoffeeScript source code with Require for modules",
80 "directory": "source",
81 "entry": "index.coffee",
82 "tags": [
83 "coffeescript",
84 "require"
85 ],
86 "engines": false
87 },
88 {
89 "description": "CoffeeScript compiled for Node.js with Require for modules",
90 "directory": "edition-esnext",
91 "entry": "index.js",
92 "tags": [
93 "javascript",
94 "esnext",
95 "require"
96 ],
97 "engines": {
98 "node": "10 || 12"
99 }
100 }
101 ],
102 "bin": {
103 "cson2json": "bin.js",
104 "json2cson": "bin.js"
105 },
106 "type": "commonjs",
107 "main": "edition-esnext/index.js",
108 "dependencies": {
109 "coffeescript": "^2.5.1",
110 "cson-parser": "^4.0.4",
111 "extract-opts": "^4.3.0",
112 "requirefresh": "^3.3.0",
113 "safefs": "^5.5.0"
114 },
115 "devDependencies": {
116 "assert-helpers": "^6.0.0",
117 "coffeelint": "^2.1.0",
118 "kava": "^4.4.0",
119 "projectz": "^1.19.0",
120 "safeps": "^9.3.0",
121 "valid-directory": "^1.6.0"
122 },
123 "scripts": {
124 "our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
125 "our:compile": "npm run our:compile:edition-esnext",
126 "our:compile:edition-esnext": "coffee -bco ./edition-esnext ./source",
127 "our:deploy": "echo no need for this project",
128 "our:meta": "npm run our:meta:projectz",
129 "our:meta:projectz": "projectz compile",
130 "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",
131 "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
132 "our:release:check-dirty": "git diff --exit-code",
133 "our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
134 "our:release:push": "git push origin master && git push origin --tags",
135 "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\"",
136 "our:setup": "npm run our:setup:install",
137 "our:setup:install": "npm install",
138 "our:test": "npm run our:verify && npm test",
139 "our:verify": "npm run our:verify:coffeelint && npm run our:verify:directory",
140 "our:verify:coffeelint": "coffeelint ./source",
141 "our:verify:directory": "valid-directory",
142 "test": "node ./edition-esnext/test.js"
143 }
144}