-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
129 lines (129 loc) · 3.15 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"author": {
"name": "Colin Meinke",
"email": "[email protected]",
"url": "https://colinmeinke.com"
},
"babel": {
"env": {
"cjs": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
"@babel/preset-env"
]
},
"modules": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
]
},
"test": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
"@babel/preset-env"
]
},
"umd": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
]
}
}
},
"bugs": {
"url": "https://github.com/colinmeinke/points/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"svg-arc-to-cubic-bezier": "^3.2.0"
},
"description": "A specification for storing shape data in Javascript. Includes functions for adding, removing, reordering and converting points",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.1",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.0",
"babel-jest": "^24.8.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"rollup": "^1.16.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2",
"semantic-release": "^15.13.18",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"svg-points": "^6.0.1"
},
"jest": {
"testRegex": "(/test/.*|\\.test)\\.js$"
},
"keywords": [
"add",
"arc",
"bezier",
"convert",
"curves",
"index",
"move",
"path",
"points",
"quadratic",
"remove",
"reverse",
"shapes",
"svg"
],
"license": "MIT",
"main": "cjs/index.js",
"module": "modules/index.js",
"name": "points",
"repository": {
"type": "git",
"url": "https://github.com/colinmeinke/points.git"
},
"scripts": {
"build": "npm run build:modules && npm run build:cjs && npm run build:umd",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir cjs",
"build:modules": "BABEL_ENV=modules babel src --out-dir modules",
"build:umd": "npm run build:umd:dev && npm run build:umd:pro",
"build:umd:dev": "BABEL_ENV=umd rollup -c",
"build:umd:pro": "NODE_ENV=production BABEL_ENV=umd rollup -c",
"commit": "git-cz",
"fix": "standard --fix",
"lint": "standard --verbose | snazzy",
"prepublish": "npm run tidy && npm run build",
"test": "jest",
"tidy": "rimraf modules cjs dist",
"semantic-release": "semantic-release"
},
"version": "0.0.0-development"
}