-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 836 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
{
"name": "vanilla-vectors-3d",
"version": "1.0.0",
"description": "A library that provides vectors, lines and planes in a three-dimensional vector space",
"main": "lib/index.js",
"keywords": [
"vectors",
"geometry"
],
"repository": "https://github.com/thormeier/vanilla-vectors-3d",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "babel src --presets babel-preset-env --out-dir lib",
"test": "mocha --require babel-register --colors",
"dev": "echo \"Error: no dev stuff specifried\" && exit 1",
"prepublish": "npm run build"
},
"author": "Pascal Thormeier <pascal.thormeier@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^5.0.0"
}
}