-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "btype",
"version": "0.2.3",
"description": "A compiled language for the web",
"main": "btype.js",
"scripts": {
"build": "babel src --out-dir build --source-maps --no-babelrc --presets es2015 --ignore=\"static/**/*.js\"",
"prepublish": "rm -rf build/* && npm run build && cp -a src/compiler/static build/compiler/static",
"test": "./node_modules/.bin/mocha --recursive --reporter=dot"
},
"keywords": [
"language",
"compiled"
],
"author": "Matt Basta <me@mattbasta.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.4.*",
"babel-preset-es2015": "6.3.*",
"mocha": "2.3.*"
},
"dependencies": {
"babel-preset-node5": "10.5.*",
"babel-register": "^6.3.13",
"bitstring": "^1.0.0",
"escodegen": "^1.7.1",
"esprima": "^2.7.1",
"minimist": "^1.1.0"
},
"bin": {
"btype": "./bin/btype",
"runbt": "./bin/runbt"
},
"preferGlobal": true,
"engines": {
"node": ">=5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mattbasta/btype.git"
}
}