-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 792 Bytes
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
{
"name": "define-operator",
"version": "0.0.5",
"main": "lib/index.js",
"files": ["lib/*.js"],
"scripts": {
"test": "mocha ./test/test-spec.js --compilers js:babel-register",
"prepublish": "babel src --out-dir lib"
},
"author": "Kevin Barabash <kevinb@khanacademy.org>",
"license": "MIT",
"description": "",
"dependencies": {
"escodegen": "^1.8.0",
"esprima": "^2.7.2",
"estraverse": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.7",
"babel-plugin-operator-overloading": "0.0.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"mocha": "^2.4.5"
}
}