-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "raj-web-debugger",
"description": "Web debugger for Raj",
"version": "0.0.3",
"author": "Chris Andrejewski <[email protected]>",
"babel": {
"presets": [
"es2015",
"stage-3"
]
},
"bugs": {
"url": "https://github.com/andrejewski/raj-web-debugger/issues"
},
"dependencies": {
"raj-compose": "0.0.7",
"tagmeme": "0.0.7"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"fixpack": "^2.3.1",
"standard": "^11.0.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/andrejewski/raj-web-debugger#readme",
"keywords": [
"debugger",
"time",
"travel",
"web"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/andrejewski/raj-web-debugger.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"lint": "fixpack && standard --fix",
"prepublishOnly": "npm run build",
"test": "npm run lint && ava"
}
}