-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "polymerize",
"description": "A browserify transform for polymer web-component",
"version": "1.0.0",
"author": "Jean Ponchon <jean.ponchon@novadiscovery.com>",
"repository": {
"type": "git",
"url": "https://github.com/nodys/polymerize.git"
},
"bugs": {
"url": "https://github.com/nodys/polymerize/issues"
},
"homepage": "https://github.com/nodys/polymerize/htmly",
"licenses": "MIT",
"main": "lib/transform",
"engines": {
"node": ">= 0.10"
},
"scripts": {
"test": "mocha",
"spec": "mocha --reporter spec",
"monitor": "mocha --reporter spec --watch",
"debugtest": "mocha --debug-brk --reporter spec",
"coverage": "rm -rf ./lib-cov && jscoverage ./lib ./lib-cov && COVERAGE=true mocha --reporter html-cov > ./coverage.html && rm -rf ./lib-cov",
"jshint": "./node_modules/.bin/jshint --exclude node_modules"
},
"dependencies": {
"clean-css": "^2.2.16",
"extend": "^2.0.0",
"resolve": "^1.0.0",
"through": "^2.3.6",
"whacko": "^0.17.1"
},
"devDependencies": {
"concat-stream": "^1.4.6",
"expect.js": "*",
"jshint": "*",
"mocha": "*",
"resumer": "0.0.0"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"keywords": [
"polymer",
"web-component",
"browserify",
"transform"
]
}