This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
104 lines (104 loc) · 3.03 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
95
96
97
98
99
100
101
102
103
104
{
"name": "sucrose",
"version": "0.8.4",
"description": "Interactive Charts for Business Applications",
"keywords": [
"charts",
"d3",
"visualization",
"svg",
"mobile",
"canvas"
],
"homepage": "http://sucrose.io/",
"license": "Apache-2.0",
"author": {
"name": "Henry Rogers",
"url": "https://github.com/hhrogersii"
},
"main": "build/sucrose.node.js",
"browser": "build/sucrose.js",
"module": "index",
"jsnext:main": "index",
"stylelint": {
"extends": "stylelint-config-standard"
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie 11"
],
"repository": {
"type": "git",
"url": "https://github.com/sugarcrm/sucrose.git"
},
"scripts": {
"instrument": "rimraf ./tests/fixtures/build && nyc instrument ./build/sucrose.js ./test/fixtures/ && cp ./build/d3.min.js ./test/fixtures/build/d3.min.js && cp ./build/sucrose.min.css ./test/fixtures/build/sucrose.min.css",
"cover-all": "nyc tape ./test/specs/**/*-test.js --cover",
"cover-unit": "nyc tape ./test/specs/unit/*-test.js",
"cover-dom": "nyc tape ./test/specs/dom/*-test.js",
"cover-int": "nyc tape ./test/specs/int/*-test.js --cover",
"cover-data": "nyc tape ./test/specs/data/*-test.js",
"cover-rpt": "nyc report",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "npm run instrument && npm run cover-all",
"test-all": "tape 'test/specs/**/*-test.js' | faucet",
"test-unit": "tape test/specs/unit/*-test.js",
"test-dom": "tape test/specs/dom/*-test.js",
"test-int": "tape test/specs/int/*-test.js",
"test-data": "tape test/specs/data/*-test.js",
"lint": "eslint ./src/.",
"lintcss": "stylelint \"src/less/**/*.less\" --syntax less",
"package": "json2module package.json > build/package.js"
},
"nyc": {
"include": [
"**/build/sucrose.js"
],
"reporter": [
"lcov",
"clover"
],
"cache": false,
"temp-directory": ".coverage"
},
"dependencies": {
"d3": "4.13.0",
"topojson": "^3.0.2"
},
"devDependencies": {
"cldr": "^4.8.0",
"cldr-data": "^32.0.1",
"cldrjs": "^0.5.0",
"clean-css-cli": "^4.1.11",
"codecov": "^3.0.0",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-es5": "^1.1.0",
"extend-tape": "^1.2.0",
"faucet": "^0.0.1",
"istanbul": "^0.4.5",
"jsdom": "11.2.0",
"jshint": "^2.9.5",
"json2module": "^0.0.3",
"less": "^3.0.1",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"make-help": "^1.0.2",
"nightmare": "^3.0.0",
"nyc": "^11.6.0",
"package-preamble": "^0.1.0",
"postcss": "^6.0.21",
"rimraf": "^2.6.2",
"rollup": "^0.55.0",
"rollup-plugin-ascii": "0.0.3",
"rollup-plugin-cleanup": "^2.0.0",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"tape": "^4.9.0",
"tapes": "^4.1.0",
"uglify-js": "^3.3.16"
}
}