mirror of
https://github.com/zulip/zulip.git
synced 2026-07-15 21:03:26 +08:00
Storing these in Git seems kind of weird, but seems to be [1] the done thing. I have to say, it's a lot more appealing than getting 3 packages from npm installed globally on every prod and dev machine -- we already have too much of that with 'pip install'. We can upgrade these in the future by running 'npm update' in the repo root directory. [1] http://www.futurealoof.com/posts/nodemodules-in-git.html (imported from commit 60a9d6a7cafe742442d87e9f3abc25750e179780)
53 lines
940 B
Plaintext
53 lines
940 B
Plaintext
{
|
|
"predef": [
|
|
"console",
|
|
"Ember",
|
|
"DS",
|
|
"Handlebars",
|
|
"Metamorph",
|
|
"ember_assert",
|
|
"ember_warn",
|
|
"ember_deprecate",
|
|
"ember_deprecateFunc",
|
|
"require",
|
|
"suite",
|
|
"equal",
|
|
"equals",
|
|
"test",
|
|
"testBoth",
|
|
"raises",
|
|
"deepEqual",
|
|
"start",
|
|
"stop",
|
|
"ok",
|
|
"strictEqual",
|
|
"module"
|
|
],
|
|
|
|
"node" : true,
|
|
"es5" : true,
|
|
"browser" : true,
|
|
|
|
"boss" : true,
|
|
"curly": false,
|
|
"debug": false,
|
|
"devel": false,
|
|
"eqeqeq": true,
|
|
"evil": true,
|
|
"forin": false,
|
|
"immed": false,
|
|
"laxbreak": false,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"noempty": false,
|
|
"nonew": false,
|
|
"nomen": false,
|
|
"onevar": false,
|
|
"plusplus": false,
|
|
"regexp": false,
|
|
"undef": true,
|
|
"sub": true,
|
|
"strict": false,
|
|
"white": false
|
|
}
|