-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.74 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.74 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
{
"name": "@djforth/viewport-detection-fp",
"version": "2.1.0",
"main": "index.js",
"repository": "[email protected]:djforth/viewport-detection-fp.git",
"author": "Adrian Stainforth <[email protected]>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build:watch": "BABEL_ENV=production babel src -x '.js','.jsx' -w --source-maps -d lib",
"js": "webpack --config config/webpack/production.js",
"lint": "eslint src/** --fix",
"lint:tests": "eslint __tests__/** --fix",
"server": "NODE_ENV=development webpack-dev-server --progress --color --config config/webpack/development.js",
"start": "yarn run server",
"test": "jest --coverage --config jest.config.json",
"test:watch": "jest --watch --config jest.config.json"
},
"devDependencies": {
"@djforth/jest-call-helpers": "^1.3.0",
"@djforth/jest-matchers": "^1.5.1",
"@djforth/stubs-spy-manager-jest": "^1.2.0",
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-rewire": "^1.1.0",
"babel-plugin-rewire-ignore-coverage": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-minify": "^0.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"eslint-config-morsedigital-prettier": "^1.1.1",
"jest": "^22.1.3",
"lodash": "^4.17.4",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1"
},
"dependencies": {}
}