forked from diagram-codesprint/2018-code-block-nav-atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "source-traverse",
"main": "./lib/source-traverse",
"version": "0.0.0",
"description": "A short description of your package",
"keywords": [],
"activationCommands": {
"atom-workspace": "source-traverse:toggle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atom/source-traverse.git"
},
"license": "BSD-3-Clause",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"babylon": "^6.18.0",
"esprima-walk": "^0.1.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"recast": "^0.15.0"
},
"bugs": {
"url": "https://github.com/atom/source-traverse/issues"
},
"homepage": "https://github.com/atom/source-traverse#readme",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm-watch"
},
"watch": {
"build": "{src,spec}/**/*.js"
},
"author": "",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"npm-watch": "^0.3.0",
"rimraf": "^2.6.2"
}
}