-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.53 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
{
"name": "mason-doc",
"version": "0.0.0",
"scripts": {
"compile-assets": "dum build",
"watch-compile-assets": "dum watch",
"build": "babel src --out-dir dist --source-maps inline",
"watch": "babel src --out-dir dist --source-maps inline --watch",
"doc": "esdoc -c esdoc.json",
"lint": "eslint src test"
},
"dependencies": {
"fs-extra-promise": "0.3.0",
"mason-compile": "mason-lang/mason-compile",
"mason-node-util": "mason-lang/mason-node-util",
"hyperscript": "1.4.7",
"jade": "1.11.0",
"js-beautify": "1.5.10",
"rimraf": "2.4.3"
},
"devDependencies": {
"babel": "5.8.29",
"babel-eslint": "4.1.3",
"benchmark": "1.0.0",
"microtime": "2.0.0",
"dum": "dum-build/dum",
"esdoc": "0.4.1",
"eslint": "1.7.3",
"jstransformer-babel": "0.2.0",
"jstransformer-jade": "0.1.0",
"jstransformer-stylus": "1.0.0",
"source-map-support": "0.3.3"
},
"repository": "mason-lang/mason-doc",
"//": "See https://github.com/babel/babel/issues/2341 and https://github.com/babel/babel/issues/2230",
"babel": {
"whitelist": [
"es6.destructuring",
"es6.modules",
"es6.parameters",
"es6.spread",
"asyncToGenerator",
"es7.asyncFunctions",
"es6.properties.shorthand",
"es6.classes",
"es7.comprehensions",
"strict"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": true,
"generators": true,
"modules": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShortandProperties": true,
"restParams": true,
"spread": true,
"templateStrings": true
},
"globals": {"console": true, "__dirname": true},
"rules": {
"array-bracket-spacing": 1,
"comma-style": [1, "last"],
"curly": [1, "multi"],
"default-case": 1,
"generator-star-spacing": [1, "after"],
"max-len": [1, 100, 4],
"no-extra-parens": 1,
"no-floating-decimal": 1,
"no-multiple-empty-lines": [1, {"max": 2}],
"no-plusplus": 1,
"no-spaced-func": 1,
"no-throw-literal": 1,
"no-trailing-spaces": 1,
"no-unused-vars": [1, {"argsIgnorePattern": "^_"}],
"no-var": 1,
"no-void": 1,
"no-undef": 1,
"object-curly-spacing": 1,
"operator-assignment": [1, "never"],
"padded-blocks": [1, "never"],
"quote-props": [1, "as-needed"],
"quotes": [1, "single"],
"space-before-blocks": [1, "always"],
"space-before-function-paren": [1, "never"],
"spaced-comment": 1,
"space-in-parens": [1, "never"]
}
},
"license": "WTFPL"
}