-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 821 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 821 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
30
31
32
33
34
35
36
{
"name": "atom-demo",
"version": "0.0.1",
"description": "demo of the atom editor",
"main": "build/index.js",
"scripts": {
"test": "mocha",
"testwatch": "mocha --watch",
"build": "babel src/index.js > build/index.js"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:Oakleon/atom-demo.git"
},
"keywords": [
"node",
"oakleon"
],
"author": "chris@oakleon.com",
"license": "MIT",
"bugs": {
"url": "https://github.com:Oakleon/atom-demo/issues"
},
"homepage": "https://github.com:Oakleon/atom-demo#readme",
"dependencies": {
"isomorphic-fetch": "^2.1.1",
"lodash": "^3.10.1"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.1.1",
"babel-runtime": "^5.8.20",
"chai": "^3.2.0",
"eslint": "^1.3.1"
}
}