-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.67 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
50
51
52
53
54
55
56
57
{
"name": "randomkeygen.com",
"version": "1.0.0",
"description": "Random Key Generator",
"private": true,
"scripts": {
"test": "npm run lint",
"build": "npm run clean && NODE_ENV=production webpack",
"develop": "NODE_ENV=development webpack-dev-server --port 8107",
"clean": "rimraf dist",
"upgrade": "ncu --upgradeAll && yarn install",
"lint": "eslint . --ext .js --cache --ignore-pattern '**/node_modules/**' --ignore-pattern '**/dist/**'",
"deploy": "pm2 deploy ecosystem.json production --force"
},
"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.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"html-webpack-plugin": "^2.28.0",
"npm-check-updates": "^2.10.5",
"open-browser-webpack-plugin": "0.0.5",
"optimist": "^0.6.1",
"rimraf": "^2.6.1",
"script-loader": "^0.7.0",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-split-by-path": "^2.0.0"
},
"dependencies": {
"balajs": "^1.0.5"
}
}