This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.54 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"version": "0.2.1",
"name": "d3-view-components",
"title": "d3-view components",
"description": "Reusable d3-view components",
"author": {
"name": "quantmind.com",
"email": "[email protected]"
},
"keywords": [
"d3",
"d3-module",
"reactive"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quantmind/d3-view-components.git"
},
"engines": {
"node": ">= 6.0"
},
"main": "build/d3-view-components.js",
"module": "index",
"jsnext:main": "index",
"dependencies": {
"awesomplete": "1.1",
"d3-dispatch": "1.0",
"d3-ease": "1.0",
"d3-let": "0.4",
"d3-selection": "1.2",
"d3-transition": "1.1",
"d3-view": "1.2",
"handlebars": "4.0"
},
"devDependencies": {
"babel-core": "6.26",
"babel-eslint": "8.2",
"babel-plugin-external-helpers": "6.22",
"babel-plugin-istanbul": "4.1",
"babel-polyfill": "6.26",
"babel-preset-env": "1.6",
"babel-preset-es2015-rollup": "3.0",
"babelify": "8.0",
"bootstrap": "4.0.0-beta.2",
"browserify-istanbul": "3.0",
"eslint": "4.15",
"fs-extra": "5.0",
"jasmine-core": "2.8",
"karma": "2.0",
"karma-browserify": "5.1",
"karma-chrome-launcher": "2.2",
"karma-coverage": "1.1",
"karma-firefox-launcher": "1.1",
"karma-html2js-preprocessor": "1.1",
"karma-jasmine": "1.1",
"karma-junit-reporter": "1.2",
"karma-phantomjs-launcher": "1.0",
"karma-safari-launcher": "1.0",
"navigo": "7.0",
"node-sass": "4.7",
"package-preamble": "0.1",
"phantomjs-prebuilt": "2.1",
"publish": "0.6",
"rollup": "0.54",
"rollup-plugin-babel": "3.0",
"rollup-plugin-json": "2.3",
"rollup-plugin-node-resolve": "3.0",
"rollup-plugin-sourcemaps": "0.4",
"rollup-plugin-string": "2.0",
"rollup-watch": "4.3",
"uglify-js": "3.3",
"watchify": "3.9",
"whatwg-fetch": "2.0"
},
"scripts": {
"lint": "eslint .",
"cleanup": "rm -rf build",
"test": "npm run-script lint && npm run-script unit",
"rollup": "cp ./node_modules/navigo/src/index.js src/router/navigo.js && rollup -c dev/rollup.config.js --banner \"$(preamble)\"",
"dev": "rollup -c dev/rollup.config.dev.js -w",
"css": "node-sass index.scss build/d3-view-components.css --include-path node_modules --output-style compressed",
"build": "npm run-script rollup && uglifyjs --preamble \"$(preamble)\" build/d3-view-components.js -c -m -o build/d3-view-components.min.js && npm run-script css",
"unit": "karma start dev/karma.unit.js",
"cover": "karma start dev/karma.cover.js",
"debug": "karma start dev/karma.debug.js",
"debug:firefox": "karma start dev/karma.debug.firefox.js",
"docs": "rollup -c _ci/rollup.config.js && view-require -c _ci/require.config.js -s && uglifyjs build/docs.js -c -m -o build/docs.min.js && _ci/build-docs.js && node-sass _ci/docs.scss build/docs.css --include-path node_modules --output-style compressed",
"serve": "http-server build/",
"prepare": "npm run-script build",
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git tag -am \"Release $VERSION.\" v${VERSION} && git push --tags",
"release": "publish"
}
}