-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "mandelbrot",
"version": "0.0.1",
"description": "Javascript-based Mandelbrot viewer.",
"main": "index.html",
"scripts": {
"test": "node_modules/karma/bin/karma start",
"uglify": "grunt uglify"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/scttdavs/mandelbrot.git"
},
"keywords": [
"fractals",
"mandelbrot"
],
"author": "Scott Davis (scttdavs)",
"license": "MIT",
"bugs": {
"url": "https://github.com/scttdavs/mandelbrot/issues"
},
"homepage": "https://github.com/scttdavs/mandelbrot#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.18.0",
"grunt": "^0.4.5",
"grunt-contrib-uglify": "^1.0.1",
"grunt-mocha-istanbul": "^3.0.1",
"istanbul": "^0.4.2",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-lasso": "^2.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"lasso": "^2.5.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"phantomjs-prebuilt": "^2.1.7"
}
}