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
|
{
"name": "espower-location-detector",
"description": "AST source location detection helper for power-assert",
"version": "1.0.0",
"author": {
"name": "Takuto Wada",
"email": "takuto.wada@gmail.com",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/twada/espower-location-detector/issues",
"dependencies": {
"is-url": "^1.2.1",
"path-is-absolute": "^1.0.0",
"source-map": "^0.5.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"acorn": "^3.3.0",
"escallmatch": "^1.5.0",
"escodegen": "^1.8.1",
"estraverse": "^4.2.0",
"jshint": "^2.9.3",
"mocha": "^3.0.2"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"index.js",
"lib"
],
"homepage": "https://github.com/twada/espower-location-detector",
"keywords": [
"ast",
"estree",
"sourcemaps"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/twada/espower-location-detector.git"
},
"scripts": {
"lint": "jshint index.js lib",
"test": "npm run lint && mocha test"
}
}
|