forked from locutusjs/locutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.36 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
{
"name": "locutus",
"version": "2.0.6",
"license": "MIT",
"description": "Locutus other languages' stadard libraries to JavaScript for fun and educational purposes",
"homepage": "http://locutus.io",
"author": "Kevin van Zonneveld <kevin@vanzonneveld.net>",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"async": "2.0.0-rc.3",
"babel-cli": "6.7.7",
"babel-preset-es2015": "6.6.0",
"babel-register": "6.7.2",
"browserify": "13.0.0",
"budo": "8.2.1",
"chai": "3.5.0",
"cross-env": "1.0.7",
"depurar": "0.2.2",
"eslint": "2.8.0",
"eslint-config-standard": "5.2.0",
"eslint-plugin-standard": "1.3.2",
"fakefile": "0.0.8",
"globby": "4.0.0",
"indent-string": "2.1.0",
"js-beautify": "1.6.2",
"js-yaml": "3.6.0",
"lodash": "4.11.1",
"mkdirp": "0.5.1",
"mocha": "2.4.5",
"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/kvz/locutus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kvz/locutus.git"
},
"readmeFilename": "README.md",
"scripts": {
"beautify": "js-beautify --replace src/*.js src/*/*.js src/*/*/*.js",
"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:*",
"deploy": "npm-run-all injectweb website:build website:deploy",
"fix": "eslint src test,!languages --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 npm run release",
"release:minor": "cross-env SEMANTIC=minor npm run release",
"release:patch": "cross-env SEMANTIC=patch npm run release",
"release": "git commit CHANGELOG.md -m 'Update CHANGELOG.md' && npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push --tags && git push && npm run build:dist && cd dist && npm publish",
"test:languages:noskip": "npm run build:tests:noskip && cross-env DEBUG=locutus:* mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"",
"test:languages": "npm run 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 && npm install",
"website:deploy": "cd website && hexo deploy --silent",
"website:start": "cd website && hexo server",
"website:build": "cd website && hexo generate",
"website:clean": "cd website && hexo clean"
}
}