-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.78 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
{
"name": "babel-plugin-trace",
"version": "1.1.0",
"description": "Super convenient syntax for execution tracing, logging and debugging JavaScript applications via a babel plugin.",
"main": "lib/index.js",
"scripts": {
"build": "babel --plugins syntax-flow,transform-flow-strip-types -d ./lib ./src",
"build-typed": "npm run build && babel --plugins typecheck,syntax-flow,transform-flow-strip-types -d ./lib-checked ./src",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha ./test/index.js",
"test-checked": "npm run build-typed && TRACE_USE_LIBCHECKED=1 mocha ./test/index.js",
"watch": "NODE_WATCH=1 mocha --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/codemix/babel-plugin-trace"
},
"keywords": [
"babel",
"babel-plugin",
"babel-plugin-macros",
"logging",
"trace",
"tracing",
"debug",
"control flow"
],
"author": "Charles Pick <charles@codemix.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/babel-plugin-trace/issues"
},
"homepage": "https://github.com/codemix/babel-plugin-trace",
"devDependencies": {
"babel-cli": "^6.1.0",
"babel-core": "^6.1.0",
"babel-generator": "^6.1.2",
"babel-plugin-syntax-class-properties": "^6.1.18",
"babel-plugin-syntax-flow": "^6.0.14",
"babel-plugin-transform-es2015-modules-commonjs": "^6.1.3",
"babel-plugin-transform-flow-strip-types": "^6.0.14",
"babel-plugin-typecheck": "^3.2.1",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.0",
"babel-preset-react": "^6.1.0",
"babel-preset-stage-0": "^6.1.18",
"babel-preset-stage-1": "^6.1.0",
"mocha": "~2.2.4",
"should": "^6.0.1"
},
"dependencies": {
"babel-plugin-macros": "^2.2.1"
}
}