-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 973 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
36
37
38
39
40
{
"name": "dom-fit",
"version": "1.0.0",
"description": "Fit a DOM element into another",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha-phantomjs ./test/runner.html",
"build": "browserify -d -r assert -r debug -r ./index.js:dom-fit > bundle.js",
"watch": "onchange 'index.js' 'test/index.js' -- npm test"
},
"keywords": [
"dom",
"fit",
"parent"
],
"license": "MIT",
"author": {
"name": "Antoine Lehurt",
"email": "[email protected]",
"url": "http://kewah.com",
"twitter": "https://twitter.com/kewah"
},
"repository": {
"type": "git",
"url": "https://github.com/nk-components/dom-fit"
},
"dependencies": {
"debug": "^2.1.0",
"defaults": "^1.0.0",
"dom-transform": "^1.0.1",
"math-fit": "^1.0.1"
},
"devDependencies": {
"browserify": "^7.0.3",
"mocha": "^2.0.1",
"mocha-phantomjs": "^3.5.2",
"onchange": "0.0.2",
"phantomjs": "^1.9.13"
}
}