forked from circlecell/jsonlint.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
{
"name": "jsonlintdotcom",
"version": "0.0.1",
"description": "The JSON Validator",
"private": true,
"scripts": {
"test": "npm run lint",
"build": "npm run clean && NODE_ENV=production webpack",
"develop": "NODE_ENV=development webpack-dev-server --port 8106",
"clean": "rimraf dist",
"upgrade": "ncu --upgradeAll && npm install",
"lint": "eslint . --ext .js --ignore-pattern '**/node_modules/**' --ignore-pattern '**/dist/**'",
"deploy": "pm2 deploy ecosystem.json production --force",
"stylelint": "stylelint static/css/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circlecell/jsonlintdotcom.git"
},
"keywords": [
"jsonlint",
"lint",
"json"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/circlecell/jsonlintdotcom/issues"
},
"homepage": "https://github.com/circlecell/jsonlintdotcom#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.4.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"napa": "^3.0.0",
"npm": "^5.3.0",
"npm-check-updates": "^2.12.1",
"open-browser-webpack-plugin": "0.0.5",
"optimist": "^0.6.1",
"rimraf": "^2.6.1",
"script-loader": "^0.7.0",
"string-replace-loader": "^1.3.0",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"balajs": "^1.0.6",
"clipboard": "^1.7.1",
"codemirror": "^5.28.0",
"js-beautify": "^1.6.14",
"jsonlint-mod": "^1.7.2",
"jsonminify": "^0.4.1"
}
}