-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·92 lines (92 loc) · 2.8 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
{
"name": "literal-to-json",
"version": "0.0.1",
"lastUpdated": "2017-10-04T13:23:46.548Z",
"description": "Convert an object literal to json",
"main": "''",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"start": "webpack-dev-server --progress --profile --colors",
"lint": "eslint --ext js --ext jsx src || exit 0",
"dev": "webpack-dashboard -- webpack-dev-server",
"test": "export NODE_ENV=test && jest",
"bump:date": "node scripts/bump.js",
"deploy:gh-pages": "gh-pages -d public",
"deploy": "run-s bump:date build deploy:gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/lwhiteley/literal-to-json"
},
"author": "Layton Whiteley",
"license": "MIT",
"homepage": "https://lwhiteley.github.io/literal-to-json",
"dependencies": {
"clipboard": "^1.7.1",
"grid-css": "^1.3.4",
"jquery": "^3.2.1",
"moment": "^2.18.1",
"node-sass": "^4.3.0",
"prop-types": "^15.6.0",
"react": "15.6.1",
"react-dom": "15.4.2",
"react-icons": "^2.2.5",
"toastr": "^2.1.2",
"write": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "^6.23.0",
"babel-runtime": "^6.22.0",
"css-loader": "0.26.1",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.0",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.26.0",
"jest": "^20.0.4",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"loglevel": "^1.4.1",
"npm-run-all": "^4.1.1",
"postcss-loader": "^1.2.2",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.2",
"script-loader": "^0.7.1",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "^3.3.0",
"webpack-cleanup-plugin": "^0.4.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.1"
},
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/__mocks__/styleMock.js",
"app": "<rootDir>/src/app.jsx"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
}
}