-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 878 Bytes
/
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
{
"name": "@whastings/js_utils",
"version": "0.6.0",
"description": "Various utilities for working in JavaScript.",
"main": "dist/cjs/index.js",
"jsnext:main": "dist/es/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "node bin/build.js",
"prepublish": "npm test && npm run build",
"test": "node tests/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/whastings/js_utils.git"
},
"author": "Will Hastings",
"license": " ",
"bugs": {
"url": "https://github.com/whastings/js_utils/issues"
},
"homepage": "https://github.com/whastings/js_utils#readme",
"devDependencies": {
"bulk-require": "^0.2.1",
"rollup": "^0.33.0",
"rollup-plugin-typescript": "^0.7.6",
"sinon": "^1.16.0",
"tap-spec": "^4.0.0",
"tape": "^4.0.0",
"ts-node": "^0.9.1"
}
}