-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.85 KB
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
59
60
61
62
{
"name": "@thisisgrow/circlepack",
"version": "0.0.8",
"description": "Circle packing using physics",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"files": [
"dist",
"doc"
],
"dependencies": {
"@babel/runtime": "^7.11.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@db-scripts/bundle": "^0.1.2",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.8.0",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"sinon": "^7.4.1"
},
"scripts": {
"build": "db-scripts-bundle --size-snapshot",
"test": "BABEL_ENV='test' mocha -r jsdom-global/register",
"test:watch": "BABEL_ENV='test' mocha --watch -r jsdom-global/register",
"cover": "npm run cover:html",
"cover:html": "nyc --reporter=html npm run test",
"cover:html:open": "npm run cover:html && open ./coverage/index.html",
"cover:check": "nyc npm run test",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"preversion": "npm run lint:fix && npm run cover:check && npm run build"
},
"engines": {
"node": "^9.5.0",
"npm": "^6.9.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/thisisgrow/grow-circlepack.git"
},
"keywords": [],
"author": "Neil Pullman <npullman@thisisgrow.com>",
"contributors": [],
"license": "UNLICENSED",
"homepage": "https://bitbucket.org/thisisgrow/grow-circlepack",
"bugs": {
"url": "https://trello.com/c/pR1uDbJL/56-open-npm-package-boilerplate"
}
}