-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "line-intersect",
"version": "3.0.0",
"description": "Line vs line, point vs line in 2D space",
"main": "commonjs/index.js",
"module": "es/index.js",
"types": "index.d.ts",
"scripts": {
"test": "BABEL_ENV=test mocha --require @babel/register",
"prebuild": "npm run clean",
"build": "npm run build:commonjs && npm run build:es",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir commonjs",
"build:es": "BABEL_ENV=es babel src --out-dir es",
"clean": "rimraf es commonjs",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"es",
"commonjs",
"index.d.ts"
],
"keywords": [
"line",
"segment",
"intersect",
"2d"
],
"author": "Paul Salaets <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/psalaets/line-intersect.git"
},
"homepage": "https://github.com/psalaets/line-intersect",
"bugs": {
"url": "https://github.com/psalaets/line-intersect/issues"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/register": "^7.0.0-beta.40",
"mocha": "^5.0.1",
"rimraf": "^2.6.2"
}
}