-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "espower-source",
"description": "Power Assert instrumentor from source to source, with source-map",
"version": "2.3.0",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/power-assert-js/espower-source/issues",
"contributors": [
{
"name": "azu",
"url": "https://github.com/azu"
},
{
"name": "James Talmage",
"url": "https://github.com/jamestalmage"
},
{
"name": "Yoshiki Shibukawa",
"url": "https://github.com/shibukawa"
},
{
"name": "Yiyu He",
"url": "https://github.com/dead-horse"
},
{
"name": "Eward Song",
"url": "https://github.com/shepherdwind"
}
],
"dependencies": {
"acorn": "^5.0.0",
"acorn-es7-plugin": "^1.0.10",
"convert-source-map": "^1.1.1",
"empower-assert": "^1.0.0",
"escodegen": "^1.10.0",
"espower": "^2.1.1",
"estraverse": "^4.0.0",
"merge-estraverse-visitors": "^1.0.0",
"multi-stage-sourcemap": "^0.2.1",
"path-is-absolute": "^1.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-jshint": "^2.0.2",
"gulp-mocha": "^5.0.0",
"gulp-util": "^3.0.6",
"jshint": "^2.9.4",
"jshint-stylish": "^2.0.1",
"mocha": "^5.0.0",
"source-map": "^0.5.7"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"files": [
"CHANGELOG.md",
"MIT-LICENSE.txt",
"README.md",
"index.js",
"package.json"
],
"homepage": "https://github.com/power-assert-js/espower-source",
"keywords": [
"power-assert",
"assert",
"assertion",
"test",
"testing"
],
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/power-assert-js/espower-source.git"
},
"scripts": {
"preversion": "npm test",
"lint": "gulp lint",
"test": "gulp test"
}
}