-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "raw-pdf",
"version": "0.0.1",
"description": "Extract PDF data",
"main": "./lib/raw-pdf.js",
"scripts": {
"prepublishOnly": "./node_modules/.bin/gulp build",
"test": "./node_modules/.bin/gulp test",
"test:cover": "./node_modules/.bin/babel-node ./node_modules/istanbul/lib/cli.js cover --report lcov --report html ./node_modules/mocha/bin/_mocha -- --recursive 'test/**/*.spec.js'",
"watch": "./node_modules/.bin/gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dootrix/raw-pdf.git"
},
"keywords": [
"raw",
"pdf",
"extract",
"node",
"npm"
],
"author": {
"name": "Steven Atkinson",
"email": "steve.atkinson@dootrix.com",
"url": "https://dootrix.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Dootrix/raw-pdf/issues"
},
"homepage": "https://github.com/Dootrix/raw-pdf#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^8.0.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^4.0.2",
"chai-datetime": "^1.5.0",
"coveralls": "^3.0.1",
"eslint": "^4.18.1",
"eslint-config-es2015": "^1.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.1",
"istanbul": "1.0.0-alpha.2",
"mocha": "^5.0.0"
}
}