-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 962 Bytes
/
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
{
"name": "posthtml-to-svg-tags",
"version": "0.0.0",
"description": "Transform HTML tags to SVG tags",
"keywords": ["posthtml"],
"dependencies": {
"bem-naming": "^0.5.1",
"traverse": "^0.6.6"
},
"peerDependencies": {},
"devDependencies": {
"chai": "^3.0.0",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"posthtml": "0.0.2",
"jscs-protein": "git://github.com/theprotein/jscs-protein.git#1d22e08ca767958a95b79f3bad6449fb2fa9f496"
},
"main": "index.js",
"scripts": {
"test": "npm run jshint && npm run jscs && npm run mocha",
"mocha": "mocha ./test/",
"jshint": "jshint .",
"jscs": "jscs ."
},
"repository": {
"type": "git",
"url": "git://github.com/theprotein/posthtml-to-svg-tags.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/theprotein/posthtml-to-svg-tags/issues"
},
"homepage": "https://github.com/theprotein/posthtml-to-svg-tags"
}