-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1.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
{
"name": "node-chartist",
"version": "1.0.5",
"description": "SVG Charts on the server.",
"author": "",
"license": "Unlicense",
"main": "lib/index.js",
"browserify": {
"transform": [
"brfs"
]
},
"dependencies": {
"@panosoft/ramda-utils": "^0.2.8",
"brfs": "^1.4.3",
"chartist": "^0.11.0",
"chartist-plugin-axistitle": "0.0.1",
"co": "^4.6.0",
"is_js": "^0.9.0",
"jsdom": "^9.0.0",
"matchmedia": "^0.1.2",
"promisify-node": "^0.2.1",
"ramda": "^0.18.0",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"cheerio": "^0.19.0",
"less": "^2.7.1",
"mocha": "^2.3.4",
"rimraf": "^2.5.3",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"touch": "^1.0.0"
},
"scripts": {
"prebuild": "rimraf dist/*",
"build": "lessc lib/main.less dist/main.css && touch node_modules/canvas.js",
"pretest": "npm run build",
"test": "mocha",
"watch": "watch 'npm run build' ./lib ./node_modules"
}
}