-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
124 lines (124 loc) · 3.9 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vsl",
"version": "0.2.0-alpha.1",
"description": "VSL: Versatile Scripting Language",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run nearley && cross-env NODE_ENV=production babel src/ -d lib/ -D",
"dev": "npm run nearley && npm run babel",
"babel": "babel src/ -d lib/ -s -D",
"nearley": "mkdirp lib/vsl/parser && nearleyc src/vsl/parser/parser.ne -o src/vsl/parser/parser.js",
"compileParser": "babel src/vsl/parser/parser.js -o lib/vsl/parser/parser.js",
"parser": "npm run nearley && npm run compileParser",
"watch": "npm run watchParser; babel src/ -d lib/ -s --watch",
"watchParser": "node misc/parser-watcher.js &",
"clean": "rm -r lib",
"lint": "eslint src",
"docs": "esdoc",
"test": "babel test/runner.js -o test/runner.o.js && node test/runner.o.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vsl-lang/VSL.git"
},
"bin": {
"vsl": "lib/cli/vsl.js"
},
"contributors": [
"Vihan <[email protected]> (https://vihan.org)",
"E-Hern Lee"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vsl-lang/VSL/issues"
},
"homepage": "https://github.com/vsl-lang/VSL#readme",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.1.5",
"astring": "^1.3.1",
"axios": "^0.18.0",
"browser-process-hrtime": "^0.1.3",
"command-exists": "^1.2.8",
"core-js": "^3.1.4",
"fs-extra": "^3.0.1",
"glob": "^7.1.3",
"html-entities": "^1.2.1",
"js-yaml": "^3.12.0",
"llvm-node": "git+https://github.com/vsl-lang/llvm-node.git#35b7014fd6fc14f0e1e1ea5262fe0a65fc68ce1d",
"lz4": "git+https://github.com/vihanb/node-lz4.git#1b9c953c777bfab70afb236e194fb05d4b618932",
"mkdirp": "^0.5.1",
"msgpack-lite": "^0.1.26",
"node-sass": "^4.11.0",
"prismjs": "^1.16.0",
"prismjs-language-vsl": "^1.0.0",
"pug": "^2.0.3",
"semver": "^5.6.0",
"showdown": "^1.9.0",
"striptags": "^3.1.1",
"vsl-nearley": "^2.9.5",
"webidl2": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.1.6",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^7.2.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-wildcard": "^5.0.0",
"cross-env": "^5.2.0",
"esdoc": "^1.1.0",
"esdoc-babel-7-plugin": "^1.1.0",
"esdoc-babel-plugin": "github:mhelvens/esdoc-babel-plugin",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^3.19.0",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.28.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.18.2",
"webpack": "^2.6.1"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"include": [
"src/vsl/**/*.js"
],
"exclude": [],
"all": true,
"sourceMap": false,
"instrument": false
},
"pkg": {
"scripts": [
"lib/**/*.js"
],
"assets": [
"libraries/libvsl-x/**/*"
]
}
}