-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "jp_doodle",
"version": "0.1.0",
"description": "jp_doodle makes implementing special purpose interactive visualizations easy.",
"main": "dist/index.js",
"files": [
"dist/canvas_2d_widget_helper.js",
"dist/dual_canvas_helper.js",
"dist/index.js"
],
"dependencies": {
"jquery": "^3.0.0",
"jquery-ui": "^1.12.1"
},
"style": [
"./node_modules/jquery-ui/themes/base/all.css"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browserify": "*",
"coveralls": "^3.0.0",
"eslint": "^4.13.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.4.3",
"opener": "^1.4.0",
"parcelify": "^0.12.5"
},
"scripts": {
"build-css": "touch html/bundle.css && parcelify html/entry.js -c html/bundle.css",
"build-js": "browserify html/entry.js > html/bundle.js",
"start": "npm run build-css && npm run build-js && opener html/index.html",
"build": "babel jp_doodle/js -D -d dist",
"prepare": "npm run build",
"test": "jest --useStderr",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"lint": "eslint src test --ignore-pattern tests/coverage*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AaronWatters/jp_doodle.git"
},
"keywords": [
"canvas",
"animation",
"visualization",
"event",
"scientific",
"jquery",
"plugin",
"javascript",
"browser",
"library"
],
"author": "Aaron Watters",
"license": "ISC",
"bugs": {
"url": "https://github.com/AaronWatters/jp_doodle/issues"
},
"homepage": "https://github.com/AaronWatters/jp_doodle"
}