-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.04 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "d3actor",
"version": "0.0.4",
"description": "A library for creating D3 components, inspired by React.",
"main": "cjs/index.js",
"module": "esm/index.js",
"browser": "umd/d3actor.js",
"author": {
"name": "Jacek Ciolek",
"email": "jacek@webnicer.com"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint .",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webnicer/d3actor.git"
},
"keywords": [
"d3",
"components"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/webnicer/d3actor/issues"
},
"homepage": "https://github.com/webnicer/d3actor#readme",
"peerDependencies": {
"d3": "^5.0.0"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.1.0",
"d3": "^5.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.1",
"jest": "^23.2.0",
"prettier": "^1.13.5",
"rollup": "^0.61.2",
"rollup-plugin-babel": "^3.0.5",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"semantic-release": "^15.6.3"
},
"files": [
"LICENSE",
"README.md",
"umd/",
"cjs/",
"esm/"
],
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"MAJOR VERSION CHANGE"
]
}
}
}
}