UNPKG

2.54 kBJSONView Raw
1{
2 "name": "espower",
3 "description": "Power Assert feature instrumentor based on the ECMAScript AST",
4 "version": "1.3.0",
5 "author": {
6 "name": "Takuto Wada",
7 "email": "takuto.wada@gmail.com",
8 "url": "https://github.com/twada"
9 },
10 "bugs": {
11 "url": "https://github.com/power-assert-js/espower/issues"
12 },
13 "contributors": [
14 {
15 "name": "James Talmage",
16 "url": "https://github.com/jamestalmage"
17 }
18 ],
19 "dependencies": {
20 "array-find": "^1.0.0",
21 "deep-equal": "^1.0.0",
22 "escallmatch": "^1.4.2",
23 "escodegen": "^1.7.0",
24 "espower-location-detector": "^0.1.1",
25 "espurify": "^1.3.0",
26 "estraverse": "^4.1.0",
27 "is-url": "^1.2.1",
28 "isarray": "^1.0.0",
29 "path-is-absolute": "^1.0.0",
30 "source-map": "^0.5.0",
31 "type-name": "^2.0.0",
32 "xtend": "^4.0.0"
33 },
34 "devDependencies": {
35 "acorn": "^3.2.0",
36 "acorn-es7-plugin": "^1.0.14",
37 "amdefine": "^1.0.0",
38 "blanket": "1.1.9",
39 "browserify": "^13.0.1",
40 "del": "^2.0.2",
41 "gulp": "^3.9.0",
42 "gulp-derequire": "^2.1.0",
43 "gulp-dereserve": "^0.2.1",
44 "gulp-jshint": "^2.0.1",
45 "gulp-mocha": "^2.1.3",
46 "gulp-mocha-phantomjs": "^0.11.0",
47 "gulp-util": "^3.0.6",
48 "gulp-webserver": "^0.9.1",
49 "jshint": "^2.9.2",
50 "jshint-stylish": "^2.2.0",
51 "licensify": "^3.1.2",
52 "mocha": "^2.5.3",
53 "mocha-lcov-reporter": "^1.2.0",
54 "package-json-versionify": "^1.0.2",
55 "through2": "^2.0.0",
56 "vinyl-source-stream": "^1.1.0"
57 },
58 "directories": {
59 "lib": "./lib"
60 },
61 "files": [
62 "CHANGELOG.md",
63 "MIT-LICENSE.txt",
64 "README.md",
65 "index.js",
66 "build/espower.js",
67 "lib",
68 "package.json"
69 ],
70 "homepage": "https://github.com/power-assert-js/espower",
71 "keywords": [
72 "power-assert",
73 "assert",
74 "assertion",
75 "test",
76 "testing",
77 "ecmascript",
78 "estree",
79 "ast"
80 ],
81 "license": "MIT",
82 "main": "./index.js",
83 "repository": {
84 "type": "git",
85 "url": "https://github.com/power-assert-js/espower.git"
86 },
87 "scripts": {
88 "preversion": "npm test",
89 "version": "npm run dist && git add -A build",
90 "bower": "bower install --config.interactive=false",
91 "dist": "npm run build && gulp dist",
92 "build": "npm prune && npm dedupe && gulp bundle",
93 "clean": "gulp clean",
94 "lint": "gulp lint",
95 "test": "npm run lint && npm run build && gulp test",
96 "unit": "gulp unit",
97 "watch": "gulp watch",
98 "coveralls": "gulp coverage && cat ./coverage.lcov | coveralls"
99 }
100}