-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
98 lines (98 loc) · 2.95 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
94
95
96
97
98
{
"name": "nr1-funnel-component",
"version": "0.1.1",
"description": "Reusable component for generating funnel visualizations using funnel-graph-js.",
"main": "dist/commonjs/index.js",
"repository": {
"url": "https://github.com:newrelic/nr1-funnel-component"
},
"keywords": [
"funnel-graph-js",
"funnel",
"futurians",
"component",
"js-react-component",
"react"
],
"bugs": {
"email": "opensource@newrelic.com"
},
"author": {
"name": "Joel Worrall, Daniel Golden",
"email": "opensource@newrelic.com",
"url": "/~https://github.com/newrelic/nr1-funnel-component"
},
"license": "Apache2",
"scripts": {
"build:code": "NODE_ENV=production BABEL_ENV=commonjs distpack --src src/ --out dist/commonjs",
"build:es": "NODE_ENV=production BABEL_ENV=esmodules distpack --src src/ --out dist/es",
"build": "npm-run-all --parallel build:code build:es",
"build:code:watch": "npm run build:code -- --watch",
"build:watch": "npm-run-all build:code:watch",
"lint": "npm-run-all --parallel lint:css lint:js",
"lint:fix": "npm-run-all --parallel lint:css:fix lint:js:fix",
"lint:js": "eslint src",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "stylelint 'src/**/*.scss' --syntax scss",
"lint:css:fix": "npm run lint:css -- --fix",
"release": "standard-version"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-jest": "^22.7.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"fast-sass-loader": "^1.4.1",
"gh-pages": "^1.1.0",
"github": "^2.6.0",
"glob": "^7.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"lint-staged": "^4.3.0",
"markdown-loader": "^2.0.2",
"npm-run-all": "^4.1.2",
"prettier": "^1.14.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.2",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.7",
"standard-version": "^8.0.1",
"stylelint": "^8.2.0",
"url-loader": "^1.0.1",
"webpack": "^3.11.0"
},
"peerDependencies": {
"babel-runtime": "^6.26.0"
},
"dependencies": {
"funnel-graph-js": "^1.4.2",
"lodash": "^4.17.20",
"nice-color-palettes": "^3.0.0",
"randomstring": "^1.1.5",
"react": "^16.3.2"
},
"lint-staged": {
"**/*.scss": [
"npm run lint:css:fix",
"git add"
],
"**/*.{js,jsx}": [
"prettier --write",
"npm run lint:js:fix",
"git add"
]
}
}