forked from Esri/cedar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.96 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.96 KB
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
{
"name": "arcgis-cedar",
"version": "0.9.2",
"description": "Visualization framework for the ArcGIS Platform",
"main": "./dist/cedar.js",
"scripts": {
"clean:coverage": "rimraf ./coverage",
"clean:dist": "rimraf ./dist && mkdir dist",
"clean:docs": "rimraf ./site/build",
"copy:deps": "copyfiles -f node_modules/d3/*.js* site/build/js & copyfiles -f node_modules/vega/*.js* site/build/js",
"copy:dist": "copyfiles -f src/charts/*.json dist/charts",
"copy:docs": "copyfiles -f src/charts/*.json site/build/js/charts & copyfiles -f dist/*.js* site/build/js",
"lint": "semistandard --verbose | snazzy",
"lint:fix": "semistandard --fix",
"prebuild": "npm run lint && npm run clean:dist",
"build": "rollup -c profiles/dev.js & rollup -c profiles/prod.js & npm run copy:dist",
"pretest": "npm run build",
"test": "karma start",
"precoverage": "npm run clean:coverage & npm run build",
"coverage": "karma start karma.coverage.conf.js",
"prestart": "npm run clean:docs && npm run copy:deps",
"start": "watch 'npm run build && karma start && npm run copy:docs' src & grunt",
"predeploy": "npm run prestart && npm run test && npm run copy:docs"
},
"repository": {
"type": "git",
"url": "https://github.com/esri/cedar.git"
},
"keywords": [
"ArcGIS",
"Charting",
"Visualization",
"Vega",
"D3"
],
"author": "Esri DC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/esri/cedar/issues"
},
"homepage": "https://github.com/esri/cedar",
"devDependencies": {
"assemble": "^0.4.37",
"bootstrap-sass": "^3.3.6",
"browserify": "~8.0.2",
"chai": "^3.5.0",
"copyfiles": "^1.0.0",
"grunt": "^0.4.2",
"grunt-contrib-connect": "^0.4.1",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-imagemin": "^1.0.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-gh-pages": "^0.8.1",
"grunt-newer": "^0.7.0",
"grunt-sass": "^1.2.0",
"highlight.js": "^8.0.0",
"karma": "^1.3.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-rollup-plugin": "^0.2.4",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^0.2.14",
"load-grunt-tasks": "^0.4.0",
"mocha": "^3.0.1",
"rimraf": "^2.5.4",
"rollup": "^0.36.0",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"semistandard": "^9.1.0",
"sinon": "^1.11.1",
"sinon-chai": "^2.8.0",
"snazzy": "^5.0.0",
"underscore": "^1.7.0",
"watch": "^0.19.2"
},
"dependencies": {
"d3": "^3.5.6",
"vega": "^2.6.1"
},
"semistandard": {
"ignore": [
"gruntfile.js",
"karma.*.js",
"/profiles/",
"/site/",
"/test/"
]
}
}