-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
102 lines (102 loc) · 3.96 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
99
100
101
102
{
"name": "locutus",
"version": "2.0.32",
"description": "Locutus other languages' standard libraries to JavaScript for fun and educational purposes",
"keywords": [
"php",
"golang",
"c",
"ruby",
"python",
"js",
"locutus"
],
"homepage": "https://locutus.io",
"bugs": {
"url": "https://github.com/locutusjs/locutus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/locutusjs/locutus.git"
},
"license": "MIT",
"author": "Kevin van Zonneveld <[email protected]>",
"browser": {
"child_process": false,
"fs": false
},
"scripts": {
"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 README.md dist/",
"build:indices": "babel-node src/_util/cli.js reindex",
"build:tests:noskip": "rimraf test/generated && babel-node src/_util/cli.js writetests --noskip",
"build:tests": "rimraf test/generated && babel-node src/_util/cli.js writetests",
"build": "npm-run-all 'build:*'",
"injectweb": "rimraf website/source/{c,golang,php,python,ruby} && babel-node src/_util/cli.js injectweb",
"fix:js": "DEBUG=eslint:cli-engine eslint --fix --quiet --ext .js,.jsx,.ts,.tsx .",
"fix:formatting": "env DEBUG=prettier prettier --write .",
"fix:markdown": "remark {README,CONTRIBUTING}.md --output && prettier --write {README,CONTRIBUTING}.md",
"fix": "npm-run-all --serial 'fix:**'",
"lint:formatting": "prettier --check .",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint": "npm-run-all --parallel 'lint:**'",
"playground:start": "cd test/browser && babel-node server.js",
"test:languages:noskip": "yarn build:tests:noskip && cross-env DEBUG='locutus:*' mocha --require babel-register --reporter spec 'src/**/*.mocha.js' 'test/**/test-*.js'",
"test:languages": "yarn build:tests && cross-env DEBUG='locutus:*' mocha --require babel-register --reporter spec 'src/**/*.mocha.js' 'test/**/test-*.js'",
"test:module": "babel-node test/module/module.js",
"test:util": "mocha --require 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"
},
"devDependencies": {
"@shopify/prettier-plugin-liquid": "^1.4.4",
"async": "2.6.4",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-es6-promise": "1.1.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"browserify": "17.0.0",
"budo": "11.8.4",
"chai": "4",
"cross-env": "7.0.3",
"debug": "^4.3.4",
"es6-promise": "4.2.8",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"esprima": "4.0.1",
"globby": "4.1.0",
"indent-string": "2.1.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"mocha": "10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.14",
"remark-cli": "^12.0.0",
"remark-toc": "^9.0.0",
"rimraf": "5.0.5"
},
"packageManager": "[email protected]+sha224.ca5d6f5a8aecd0801adc32f775675b01961bdc2383867d36f4732a0a",
"engines": {
"node": ">= 10",
"yarn": ">= 1"
},
"readmeFilename": "README.md"
}