-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "tech-radar",
"version": "1.0.1",
"description": "",
"main": "src/index.js",
"engines": {
"node": "8.7.0"
},
"scripts": {
"test": "karma start karma.conf.js --single-run",
"test:dist": "npm run build && karma start karma-dist.conf.js --single-run",
"build:clean": "rm -rf ./dist/*",
"build:sass": "node-sass -r ./src/stylesheets/base.scss ./dist/base.css",
"build:webpack": "webpack --config webpack.conf.js",
"build": "npm run build:clean && npm run build:sass && npm run build:webpack",
"examples:clean": "rm -rf ./examples/*{.js,.css,.map}",
"examples:deps": "cp -r ./dist/* ./examples/",
"examples": "npm run build && npm run examples:clean && npm run examples:deps",
"publishExamples": "node ./scripts/publish-examples.js"
},
"author": "Bruno Trecenti",
"repository": {
"type": "git",
"url": "git://github.com/Trecenti/tech-radar.git"
},
"keywords": [
"tech-radar"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"gh-pages": "^1.0.0",
"install": "^0.10.1",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-script-launcher": "^1.0.0",
"karma-webpack": "^2.0.5",
"node-sass": "^4.6.0",
"npm": "^5.5.1",
"requirejs": "^2.3.5",
"webpack": "^3.8.1"
},
"dependencies": {
"chance": "^1.0.12",
"d3": "^4.11.0"
}
}