-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 986 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
35
36
{
"name": "webpurify",
"version": "2.1.0",
"description": "This provides an easy module for interacting with the WebPurify API",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register",
"build": "./node_modules/.bin/babel src --out-dir dist",
"build-docs": "./node_modules/.bin/esdoc",
"clean": "rm -rf ./node_modules ./dist"
},
"repository": "https://github.com/mileszim/webpurify",
"keywords": [
"webpurify",
"api"
],
"author": "Miles Zimmerman",
"license": "MIT",
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"mocha": "^5.2.0",
"nock": "^10.0.1",
"sinon": "^7.0.0"
}
}