forked from locutusjs/locutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.79 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
93
94
95
96
97
98
{
"name": "locutus",
"version": "2.0.14",
"license": "MIT",
"description": "Locutus other languages' standard libraries to JavaScript for fun and educational purposes",
"homepage": "https://locutus.io",
"author": "Kevin van Zonneveld <kevin@vanzonneveld.net>",
"engines": {
"node": ">= 10"
},
"devDependencies": {
"async": "2.0.0-rc.3",
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "10.1.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-es6-promise": "1.1.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-to-generator": "6.22.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-register": "6.26.0",
"browserify": "13.0.0",
"budo": "11.3.2",
"chai": "3.5.0",
"cross-env": "1.0.7",
"depurar": "0.3.0",
"es6-promise": "4.2.5",
"eslint": "7.13.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"esprima": "4.0.1",
"fakefile": "1.0.0",
"globby": "4.0.0",
"indent-string": "2.1.0",
"invig": "0.0.22",
"js-yaml": "3.6.0",
"lodash": "4.17.10",
"mkdirp": "0.5.1",
"mocha": "5.2.0",
"npm-run-all": "1.8.0",
"rimraf": "2.5.2",
"strip-indent": "2.0.0"
},
"keywords": [
"php",
"golang",
"c",
"ruby",
"python",
"js",
"locutus"
],
"bugs": {
"url": "https://github.com/locutusjs/locutus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/locutusjs/locutus.git"
},
"readmeFilename": "README.md",
"scripts": {
"beautify": "env INVIG_PRETTIER=1 invig --src src",
"browser:bundle": "browserify test/browser/app.js --outfile test/browser/bundle.js",
"browser:watch": "budo test/browser/app.js --live --serve test/browser/bundle.js",
"build:dist": "babel src --out-dir dist --source-maps && cp package.json dist/",
"build:indices": "babel-node src/_util/cli.js reindex",
"build:tests:noskip": "rimraf test/languages && babel-node src/_util/cli.js writetests --noskip",
"build:tests": "rimraf test/languages && babel-node src/_util/cli.js writetests",
"build": "npm-run-all build:*",
"fix": "eslint src --fix",
"injectweb": "rimraf website/source/{c,golang,php,python,ruby} && babel-node src/_util/cli.js injectweb",
"lint": "eslint src",
"playground:start": "cd test/browser && babel-node server.js",
"release:major": "cross-env SEMANTIC=major yarn release",
"release:minor": "cross-env SEMANTIC=minor yarn release",
"release:patch": "cross-env SEMANTIC=patch yarn release",
"release": "git commit CHANGELOG.md -m 'Update CHANGELOG.md' && npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push --tags && git push && yarn build:dist && cd dist && npm publish",
"test:languages:noskip": "yarn build:tests:noskip && cross-env DEBUG=locutus:* mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"",
"test:languages": "yarn build:tests && cross-env DEBUG=locutus:* mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"",
"test:module": "babel-node test/module/module.js",
"test:util": "mocha --compilers js:babel-register --reporter spec test/util/",
"test": "npm-run-all test:languages test:util test:module",
"website:install": "cd website && yarn",
"website:deploy": "cd website && yarn deploy",
"website:start": "cd website && yarn server",
"website:build": "cd website && yarn generate",
"website:clean": "cd website && yarn clean"
},
"dependencies": {},
"browser": {
"fs": false,
"child_process": false
}
}