-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "rapydscript",
"description": "Python-inspired, decluttered version of JavaScript with optional static typing, automatic optimizations and enhanced error-checking.",
"homepage": "http://atsepkov.github.io/RapydScript",
"keywords": [
"javascript",
"rapydscript",
"language",
"compiler"
],
"main": "lib/rapydscript.js",
"scripts": {
"test": "bin/rapydscript --test",
"test6": "bin/rapydscript --test --es6",
"preversion": "npm test",
"version": "",
"postversion": "git push && npm publish",
"build-self": "bin/rapydscript --self"
},
"version": "0.6.03",
"license": "BSD-2-Clause",
"engines": {
"node": ">=0.12.0"
},
"maintainers": [
{
"name": "Alexander Tsepkov",
"email": "atsepkov@rapydscript.com",
"web": "http://rapydscript.com"
},
{
"name": "Valeriy Kucherov",
"email": "valq7711@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/atsepkov/RapydScript.git"
},
"dependencies": {},
"bin": {
"rapydscript": "bin/rapydscript"
},
"devDependencies": {
"benchmark": "^2.1.1",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"zombie": "^4.2.1"
}
}