forked from twada/empower-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.04 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.04 KB
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": "empower-core",
"description": "Power Assert feature enhancer for assert function/object",
"version": "0.1.0",
"author": {
"name": "Takuto Wada",
"email": "takuto.wada@gmail.com",
"url": "http://github.com/twada"
},
"bugs": {
"url": "http://github.com/twada/empower-core/issues"
},
"contributors": [
{
"name": "James Talmage",
"url": "https://github.com/jamestalmage"
}
],
"dependencies": {
"call-signature": "0.0.2",
"core-js": "^1.2.6",
"xtend": "^4.0.0"
},
"devDependencies": {
"acorn": ">=2.5.2 <2.6.0",
"acorn-es7-plugin": "^1.0.9",
"babel-core": "^5.8.33",
"blanket": "^1.1.7",
"browserify": "^11.0.1",
"buster-assertions": "^0.10.4",
"del": "^2.0.1",
"escodegen": "^1.7.0",
"espower": "^1.2.1",
"gulp": "^3.9.0",
"gulp-derequire": "^2.1.0",
"gulp-dereserve": "^0.2.1",
"gulp-mocha": "^2.1.3",
"gulp-mocha-phantomjs": "^0.10.1",
"gulp-util": "^3.0.6",
"gulp-webserver": "^0.9.1",
"licensify": "^2.0.0",
"mocha": "^2.3.2",
"mocha-lcov-reporter": "^0.0.2",
"through2": "^2.0.0",
"vinyl-source-stream": "^1.1.0"
},
"directories": {
"lib": "./lib"
},
"files": [
"CHANGELOG.md",
"CHANGELOG-empower.md",
"MIT-LICENSE.txt",
"README.md",
"gulpfile.js",
"index.js",
"lib",
"build/empower-core.js",
"package.json",
"test"
],
"homepage": "http://github.com/twada/empower-core",
"keywords": [
"power-assert",
"assert",
"assertion",
"test",
"testing"
],
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "http://github.com/twada/empower-core.git"
},
"scripts": {
"preversion": "npm test",
"version": "npm run dist && git add -A build",
"bower": "bower install --config.interactive=false",
"dist": "npm prune && npm dedupe && gulp dist",
"test": "gulp test",
"unit": "gulp unit",
"watch": "gulp watch",
"coveralls": "gulp coverage && cat ./coverage.lcov | coveralls"
}
}