-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "binpack-2d",
"version": "1.4.1",
"description": "Simple functional-style 2d bin packing library",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --harmony --es_staging",
"watch": "./node_modules/.bin/mocha --harmony --es_staging --watch",
"build": "rollup -c"
},
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "https://github.com/karevn/binpack-2d.git"
},
"keywords": [
"2d",
"binpack",
"bin-pack",
"js",
"es6"
],
"author": "Nikolay Karev <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"mocha": "^3.2.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.1.0",
"rollup-plugin-replace": "^2.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1"
},
"dependencies": {
},
"peerDependencies": {
"array.prototype.find": "^2.0.4"
}
}