-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
47
48
49
50
51
52
{
"name": "euclid",
"version": "1.3.2",
"author": "Anand Thakker",
"title": "euclid",
"description": "Euclidean geometry in javascript.",
"url": "https://github.com/anandthakker/euclid",
"repository": {
"type": "git",
"url": "https://github.com/anandthakker/euclid.git"
},
"license": "MIT",
"scripts": {
"test": "6to5-node node_modules/.bin/tape test/*.js"
},
"main": "index.js",
"browserify": {
"transform": [
"6to5-browserify",
"browserify-shim"
]
},
"browserify-shim": {
"d3": "global:d3"
},
"dependencies": {
"d3": "^3.4.13",
"euclid-parser": "^2.0.2",
"uniq": "^1.0.1",
"walk-dag": "^0.0.2"
},
"devDependencies": {
"6to5": "^1.14.17",
"6to5-browserify": "^1.3.0",
"browser-sync": "^1.6.0",
"browserify": "^6.3.3",
"browserify-shim": "^3.8.0",
"coffee-script": "^1.8.0",
"gulp": "^3.8.9",
"gulp-autoprefixer": "^1.0.1",
"gulp-clean": "^0.3.1",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.8.5",
"gulp-minify-css": "^0.3.11",
"gulp-rename": "^1.2.0",
"gulp-sass": "1.2.0",
"gulp-uglify": "^1.0.1",
"tape": "^3.0.3",
"vinyl-source-stream": "^1.0.0"
}
}