forked from Pomax/bezierjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 935 Bytes
/
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
{
"name": "bezier-js",
"version": "2.2.13",
"description": "A javascript library for working with Bezier curves",
"main": "./index.js",
"scripts": {
"test": "node test/test.js",
"build": "rimraf bezier.js && webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/Pomax/bezierjs"
},
"keywords": [
"bezier",
"curves"
],
"author": "Pomax",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pomax/bezierjs/issues"
},
"homepage": "https://github.com/Pomax/bezierjs",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"browserify": "^9.0.3",
"chai": "^3.2.0",
"chai-stats": "^0.3.0",
"mkdirp": "^0.5.1",
"uglify": "^0.1.1",
"uglify-js": "^2.4.17",
"webpack": "^1.12.13"
},
"dependencies": {
"live-server": "^1.2.0"
}
}