-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.8 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.8 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
{
"name": "@team-griffin/css-sides",
"version": "1.2.0",
"main": "dist/cjs/css-sides.js",
"module": "dist/es/css-sides.js",
"repository": "git@github.com:team-griffin/css-sides.git",
"author": "Joshua Thornton <joshua.thornton@heg.com>",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"transpile": "babel src -d lib --copy-files",
"lint": "npm run lint:js && npm run flow",
"lint:js": "eslint -c ./config/.eslintrc.js 'src/**/*.js'",
"lint:js:fix": "eslint --fix -c ./config/.eslintrc.js 'src/**/*.js'",
"build-storybook": "build-storybook -c .storybook -s ./.storybook/static -o .out",
"flow": "flow check; test $? -eq 0 -o $? -eq 2",
"build": "rollup --config ./rollup.config.js",
"test": "node_modules/.bin/karma start ./config/karma.conf.js",
"test:single": "yarn run test -- --single",
"ci": "npm run lint && npm run test && npm run build",
"postmerge": "yarn",
"dockerfile:ci": "dockerscript ./docker/dockerfile.js ./docker/Dockerfile.ci"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.1.21",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"cross-env": "^5.1.3",
"dockerscript": "^0.0.6",
"eslint": "^4.13.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-react": "^7.5.1",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-memory": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify-es": "^0.0.1"
},
"dependencies": {
"@team-griffin/css-longhand": "^1.4.0",
"lodash.reduce": "^4.6.0"
}
}