This repository has been archived by the owner on Jan 6, 2024. It is now read-only.
forked from adobe-webplatform/Snap.svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "snapsvg",
"version": "0.5.1",
"description": "JavaScript Vector Library",
"main": "./dist/snap.svg.js",
"repository": {
"type": "git",
"url": "[email protected]:adobe-webplatform/Snap.svg.git"
},
"author": "Dmitry Baranovskiy",
"license": "Apache-2.0",
"dependencies": {
"eve": "~0.5.1"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-exec": "~0.4.2",
"grunt-prettify": "0.4.0",
"mocha": "*",
"expect.js": "*",
"eslint": "*",
"dr.js": "~0.1.0"
},
"eslintConfig": {
"globals": {
"window": true,
"console": true
},
"rules": {
"block-scoped-var": 0,
"comma-dangle": 0,
"no-extra-parens": 1,
"no-shadow": 0,
"consistent-return": 0,
"eqeqeq": 0,
"no-new-wrappers": 0,
"no-sequences": 1,
"radix": 2,
"new-parens": 0,
"no-underscore-dangle": 0,
"no-path-concat": 0,
"strict": 0,
"camelcase": 0,
"no-extend-native": 0,
"no-loop-func": 0,
"new-cap": 0,
"no-unused-expressions": 0,
"no-mixed-requires": 0,
"quotes": [
1,
"double",
"avoid-escape"
]
}
}
}