-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "geometry",
"version": "0.0.2",
"description": "a standalone simple geometry framework for points, lines and polygons.",
"main": "dist/index.js",
"scripts": {
"test": "eslint src/ test/ && webpack --config webpack.config.js && karma start --single-run",
"package": "eslint src/ && webpack -p --config webpack.config.js",
"develop": "webpack --config webpack.config.js --watch --devtool source-map | karma start"
},
"keywords": [
"geometry",
"homography",
"polygon",
"line",
"point"
],
"author": "Geoff McIver <geoff@p0wdr.com>",
"license": "ISC",
"repository": "git://github.com/p0wdrdotcom/geometry.git",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^4.12.1",
"jquery": "^3.2.1",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^4.1.0",
"svgjs": "^2.6.2",
"plotly.js": "^1.48.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
}
}