-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 1.97 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
{
"name": "bit-c3",
"version": "0.3.0",
"description": "Build C3 charts with CanJS components",
"main": "dist/cjs/bit-c3",
"browser": {
"transform": [
"cssify"
]
},
"browserify": {
"transform": [
"cssify"
]
},
"scripts": {
"build": "node build.js",
"lint": "semistandard",
"preversion": "npm test && npm run build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"test": "npm run testee",
"testee": "testee test/test.html --browsers firefox"
},
"dependencies": {
"c3": "0.4.11",
"can-component": "^3.0.7",
"can-compute": "^3.0.7",
"can-construct": "^3.1.1",
"can-define": "^1.0.17",
"can-event": "^3.2.0",
"can-stache": "^3.0.21",
"can-stache-bindings": "^3.0.13",
"can-util": "^3.3.5",
"can-view-autorender": "^3.0.4",
"can-view-model": "^3.1.3",
"cssify": "0.6.0",
"d3": "^3.5.17"
},
"devDependencies": {
"funcunit": "^3.0.0",
"semistandard": "^10.0.0",
"steal": "^1.3.2",
"steal-less": "^1.2.0",
"steal-qunit": "^1.0.1",
"steal-stache": "^3.0.5",
"steal-tools": "^1.2.0",
"testee": "^0.3.1"
},
"steal": {
"plugins": [
"steal-less",
"steal-stache"
],
"main": "bit-c3",
"meta": {
"c3": {
"format": "cjs"
}
},
"map": {
"d3": "d3/d3"
},
"npmIgnore": [
"testee",
"cssify",
"documentjs"
],
"directories": {
"lib": "src"
},
"transpiler": "babel"
},
"repository": {
"type": "git",
"url": "https://github.com/bitovi-components/bit-c3"
},
"keywords": [
"CanJS",
"UI",
"Chart",
"D3",
"C3",
"SVG"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitovi-components/bit-c3/issues"
},
"homepage": "https://github.com/bitovi-components/bit-c3"
}