-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.43 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
{
"name": "@miguel-silva/techradar",
"version": "0.1.2",
"description": "Create your own technology radar, with a flexible structure",
"module": "dist/techradar.es.js",
"main": "dist/techradar.cjs.js",
"browser": "dist/techradar.umd.js",
"files": ["dist", "src"],
"scripts": {
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"start": "run-p build:dev serve:dev",
"build:dev": "rollup -c rollup.config.dev.js -w",
"serve:dev": "serve -o public",
"build": "rollup -c rollup.config.prod.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint --fix 'src/**/*.js'",
"format": "prettier --write '{src/**/,}*.{js,json,css,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miguel-silva/techradar.git"
},
"keywords": ["d3js", "techradar", "technology-radar"],
"author": "Miguel Silva <miguel.smsilva@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miguel-silva/techradar/issues"
},
"homepage": "https://github.com/miguel-silva/techradar#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"d3": "^4.12.0",
"eslint": "^4.15.0",
"eslint-config-unobtrusive": "^1.2.1",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.2",
"flow-bin": "^0.61.0",
"husky": "^0.14.3",
"jest": "^22.1.1",
"lint-staged": "^6.0.0",
"npm-run-all": "^4.1.2",
"polished": "^1.9.0",
"prettier": "^1.10.2",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"serve": "^6.4.1",
"uglify-es": "^3.2.2"
},
"peerDependencies": {
"d3": "^4.12.0"
},
"lint-staged": {
"*.js": ["eslint --fix", "prettier --write", "git add"],
"*.{json,css,md}": ["prettier --write", "git add"]
},
"jest": {
"collectCoverageFrom": ["src/**/*.js", "!src/app.js"]
}
}