forked from bevry/cson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"title": "CSON",
"name": "cson",
"version": "4.0.0",
"description": "CoffeeScript-Object-Notation Parser. Same as JSON but for CoffeeScript objects.",
"homepage": "https://github.com/bevry/cson",
"license": "MIT",
"keywords": [
"javascript",
"coffeescript",
"json",
"cson",
"parse",
"stringify"
],
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"slackin",
"patreon",
"gratipay",
"flattr",
"paypal",
"bitcoin",
"wishlist"
],
"config": {
"patreonUsername": "bevry",
"gratipayUsername": "bevry",
"flattrUsername": "balupton",
"paypalURL": "https://bevry.me/paypal",
"bitcoinURL": "https://bevry.me/bitcoin",
"wishlistURL": "https://bevry.me/wishlist",
"slackinURL": "https://slack.bevry.me"
}
},
"author": "2012+ Bevry Pty Ltd <[email protected]> (http://bevry.me), Benjamin Lupton <[email protected]> (http://balupton.com)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)",
"Attila Oláh <[email protected]> (http://attilaolah.eu/)",
"evinugur (https://github.com/evinugur)",
"Jason Karns <[email protected]> (http://jasonkarns.com)",
"Joël Perras <[email protected]> (http://nerderati.com)",
"Linus Gustav Larsson Thiel <[email protected]> (http://yesbabyyes.se/)",
"Tushar Kant <[email protected]> (https://github.com/nanuclickity)",
"Claudius Nicolae <[email protected]> (https://github.com/clyfe)",
"Rob Loach <[email protected]> (http://robloach.net)",
"Ryan LeFevre <[email protected]> (http://meltingice.net)",
"Zearin (https://github.com/Zearin)",
"ZHANG Cheng <[email protected]> (http://about.me/zhangcheng77)"
],
"bugs": {
"url": "https://github.com/bevry/cson/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bevry/cson.git"
},
"engines": {
"node": ">=0.8"
},
"editions": [
{
"description": "Source + CoffeeScript + Require",
"directory": "source",
"entry": "index.js",
"syntaxes": [
"coffeescript",
"require"
]
},
{
"description": "CoffeeScript Compiled + ES5 + Require",
"directory": "es5",
"entry": "index.js",
"syntaxes": [
"javascript",
"es5",
"require"
]
}
],
"main": "es5/index.js",
"bin": {
"cson2json": "bin/cson2json",
"json2cson": "bin/json2cson"
},
"scripts": {
"our:setup": "npm install",
"our:clean": "rm -Rf ./es5",
"our:compile": "npm run our:compile:coffeescript",
"our:compile:coffeescript": "coffee -bco ./es5 ./source",
"our:meta": "npm run our:meta:projectz",
"our:meta:projectz": "projectz compile",
"our:verify": "npm run our:verify:coffeelint",
"our:verify:coffeelint": "coffeelint ./source",
"our:test": "npm run our:verify && npm test",
"our:release": "npm run our:release:prepare && npm run our:release:publish && npm run our:release:tag && npm run our:release:push",
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
"our:release:publish": "npm publish",
"our:release:tag": "git tag v$npm_package_version -a",
"our:release:push": "git push origin master && git push origin --tags",
"test": "node --harmony ./es5/test.js --joe-reporter=console"
},
"dependencies": {
"coffee-script": "^1.11.1",
"cson-parser": "^1.3.4",
"extract-opts": "^3.3.1",
"requirefresh": "^2.1.0",
"safefs": "^4.1.0"
},
"devDependencies": {
"assert-helpers": "^4.4.0",
"biscotto": "2.3.1",
"coffeelint": "^1.16.0",
"joe": "^2.0.2",
"joe-reporter-console": "^2.0.1",
"projectz": "^1.3.2",
"safeps": "^6.3.0"
}
}