-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "grizzy",
"version": "0.2.2",
"description": "common visualization functionality",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:GWAS": "babel --copy-files --out-dir examples/GWAS/src/lib --ignore *.test.js src",
"build:bar": "babel --copy-files --out-dir examples/bar-schedule/src/lib --ignore *.test.js src",
"build:umd": "webpack --output-filename grizzy.js",
"build:umd.min": "webpack --output-filename grizzy.min.js -p",
"postbuild": "rm dist/main/loadVars.pretest.js",
"lint": "eslint src",
"test": "karma start",
"watch:test": "npm test -- --auto-watch --no-single-run",
"validate": "npm-run-all --parallel lint build test"
},
"keywords": [
"d3",
"rx",
"reactive"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/jamesrhaley/grizzy"
},
"dependencies": {
"d3": "3.5.15",
"rx": "4.1.0",
"schq": "1.0.1"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-plugin-__coverage__": "11.0.0",
"babel-plugin-istanbul": "3.0.0",
"babel-preset-es2015": "6.18.0",
"babel-register": "6.18.0",
"chai": "3.5.0",
"check-more-types": "2.23.0",
"codecov": "1.0.1",
"eslint": "3.12.2",
"ghooks": "1.3.2",
"glob": "7.1.1",
"karma": "1.3.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.1",
"karma-webpack": "1.8.0",
"lazy-ass": "1.5.0",
"lodash": "4.17.2",
"lodash.isequal": "4.4.0",
"mocha": "3.1.2",
"npm-run-all": "3.1.2",
"nyc": "10.0.0",
"rimraf": "2.5.4",
"webpack": "1.13.2",
"webpack-config-utils": "2.3.0",
"webpack-dev-server": "1.16.2",
"webpack-validator": "2.2.12"
},
"author": "James Haley",
"license": "MIT"
}