This repository was archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.93 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.93 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
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
{
"name": "multilinejavascriptconverter",
"version": "1.3.18",
"description": "Turns multiline text into safe JavaScript variables",
"contributors": [
{
"name": "Brendon Body",
"url": "https://github.com/bbody"
},
{
"name": "Ognjen Belic",
"url": "https://github.com/obelic2"
},
{
"name": "Angelo Rizzuto",
"url": "https://github.com/Angelo-R"
},
{
"name": "Lachlan Collins",
"url": "https://github.com/Lockyc"
}
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.4.3",
"chai": "^4.2.0",
"chromedriver": "^90.0.0",
"coveralls": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^1.2.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nightwatch": "^1.5.0",
"node-sass": "^4.13.0",
"nyc": "^12.0.2",
"pug": "^3.0.1",
"requirejs": "^2.3.6",
"selenium-standalone": "^6.20.1"
},
"scripts": {
"build": "npm run css && npm run html:development && npm run js && npm run favicon",
"css": "node-sass scss/style.scss dist/css/style.css --output-style compressed --source-map dist/css",
"coverage": "nyc report --reporter=lcov",
"favicon": "copyfiles -f favicons/*.* dist/",
"html:development": "node ./html-compile.js development",
"html:production": "node ./html-compile.js production",
"js": "mkdirp dist/js && npm run js:build && npm run js:compile",
"js:build": "browserify src/script.js > dist/js/script.js",
"js:compile": "npx babel dist/js/script.js --out-file dist/js/script.js --source-maps",
"js:compile:prod": "npx babel dist/js/script.js",
"js:prod": "npm run js:build && npm run js:compile:prod",
"linter": "eslint *.js && eslint src/*.js && eslint tests/**/*.js",
"mocha": "nyc --reporter=text -n src/converter.js mocha tests/unit",
"setup": "npm install -g mocha && npm install -g copyfiles && npm install -g delete && npm install -g mocha && npm install -g http-server && npm install -g node-sass && npm install -g babel && npm install -g browserify && npm install -g eslint && npm install -g mkdirp",
"serve": "http-server dist",
"test": "npm run linter && npm run mocha",
"selenium-setup": "selenium-standalone install",
"nightwatch": "nightwatch"
},
"main": "./src/converter.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bbody/MultilineJavaScriptConverter.git"
},
"author": "Brendon Body",
"license": "MIT",
"bugs": {
"url": "https://github.com/bbody/MultilineJavaScriptConverter/issues"
},
"husky": {
"hooks": {
"pre-push": "npm run mocha",
"pre-commit": "npm run linter"
}
}
}