-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 963 Bytes
/
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
{
"version": "0.0.0",
"name": "coffee-to-ts",
"description": "",
"author": "Nikas Praninskas <[email protected]>",
"bin": "bin/coffee-to-ts.js",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "6.4.5",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"mocha": "^2.2.5"
},
"scripts": {
"clean": "rm -rf lib",
"build": "./node_modules/.bin/babel src -d lib",
"test": "./node_modules/.bin/mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run test && npm run clean && npm run build"
},
"dependencies": {
"babel-core": "6.11.4",
"babel-generator": "6.11.4",
"babel-template": "6.9.0",
"babel-types": "6.23.0",
"babylon": "6.8.4",
"commander": "^2.9.0",
"decaffeinate": "^2.19.5",
"glob": "^7.0.5",
"install": "^0.8.1",
"lodash": "^4.14.1",
"npm": "^3.10.5"
},
"preferGlobal": true
}