-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ringside",
"version": "1.0.1",
"description": "Positions a rectangle between inner and outer bounds",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"jam": {
"main": "./dist/index.browser.js"
},
"browser": {
"dist/index.js": "./dist/index.browser.js"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"test": "jest",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage --no-cache",
"coverage:watch": "npm run coverage -- --watch",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"release": "standard-version",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"keywords": [
"rect",
"geometry",
"alignment",
"positioning",
"fitting",
"rotation",
"bounding"
],
"author": "Ryland Herrick",
"license": "MIT",
"devDependencies": {
"@storybook/addon-knobs": "^5.0.x",
"@storybook/react": "^5.0.x",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.15",
"clean-webpack-plugin": "^1.0.0",
"d3-scale-chromatic": "^1.3.3",
"jest": "^24.7.1",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"standard-version": "^4.4.0",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"@types/d3-scale": "2.0.2",
"d3-scale": "2.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rylnd/ringside.git"
},
"bugs": {
"url": "https://github.com/rylnd/ringside/issues"
},
"homepage": "https://github.com/rylnd/ringside#readme"
}