-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "@doodle3d/clipper-js",
"version": "1.0.11",
"description": "Clipper-lib abstraction layer (simplified API)",
"main": "lib/index.js",
"module": "module/index.js",
"esnext": "src/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "npm run build:main && npm run build:module",
"build:main": "BABEL_ENV=main babel src -s -d lib",
"build:module": "BABEL_ENV=module babel src -s -d module",
"test": "npm run test:node",
"test:browser": "npm run serve -- --startPath='tests/'",
"test:node": "babel-node tests/index.js"
},
"typings": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://www.github.com/Doodle3D/clipper-js.git"
},
"keywords": [
"clipper",
"vector",
"js"
],
"author": "Casper @ Doodle3D",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-latest": "^6.5.0",
"browser-sync": "^2.26.7",
"server": "^1.0.27",
"tape": "^4.13.2"
},
"dependencies": {
"@doodle3d/clipper-lib": "^6.4.2-b"
}
}