-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.1 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
87
88
89
90
91
92
93
94
95
{
"name": "chuhai",
"version": "1.2.0",
"description": "Test driven benchmarking.",
"main": "index.js",
"browser": "dist/index.js",
"jsnext:main": "src/index.js",
"typings": "index.d.ts",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "babel src -d dist",
"pretest": "npm run build && xo",
"test": "ava",
"prepublish": "npm run build",
"build:maps": "babel src -d dist --source-maps inline",
"coverage": "npm run build:maps && nyc --reporter=lcov -- ava",
"version": "chg release -y && git add -A CHANGELOG.md",
"start": "package-scripts"
},
"files": [
"dist",
"src"
],
"author": "J. Harshbarger",
"license": "MIT",
"devDependencies": {
"ava": "^0.15.1",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.5.0",
"blue-tape": "^0.2.0",
"browserify": "^13.0.1",
"chg": "^0.3.2",
"execa": "^0.4.0",
"grunion": "^1.1.0",
"nyc": "^6.4.4",
"p-s": "^1.0.1",
"rimraf": "^2.5.2",
"setimmediate": "^1.0.4",
"tape": "^4.5.1",
"tape-run": "^2.1.4",
"testling": "^1.7.1",
"xo": "^0.15.1",
"zuul": "^3.10.1"
},
"xo": {
"semicolon": true,
"esnext": true,
"space": 2,
"plugins": [],
"rules": {
"ava/no-skip-test": 0,
"ava/no-ignored-test-files": 0,
"ava/test-ended": 0,
"ava/use-t-well": 0,
"ava/no-unknown-modifiers": 0
}
},
"dependencies": {
"benchmark": "^2.1.0",
"bluebird": "^3.4.0",
"debug": "^2.2.0",
"fn-name": "^2.0.1",
"lodash": "^4.13.1",
"stack-utils": "^0.4.0"
},
"engines": {
"node": ">=0.12"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hypercubed/chuhai.git"
},
"keywords": [
"benchmark",
"bench",
"performance",
"speed",
"test",
"tape",
"ava",
"tap",
"assert",
"promise",
"futuristic"
],
"bugs": {
"url": "https://github.com/Hypercubed/chuhai/issues"
},
"homepage": "https://github.com/Hypercubed/chuhai#readme"
}