-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.45 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.45 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
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
{
"name": "forensic-js",
"version": "0.0.0-development",
"description": "A collection of tested JavaScript modules that performs different kinds of web development tasks",
"main": "lib/exports.js",
"scripts": {
"commit": "git-cz",
"lint-src": "eslint ./src/** --fix",
"lint-test": "eslint ./test/** --fix",
"lint": "npm run lint-src & npm run lint-test",
"lint-lib-build": "eslint ./lib/** --fix",
"lint-dist-build": "eslint ./dist/** --fix",
"lint-build": "npm run lint-lib-build & npm run lint-dist-build",
"test": "BABEL_ENV=test nyc mocha --recursive",
"watch-test": "npm run test -- -w",
"prebuild": "rimraf dist && rimraf lib",
"build": "BABEL_ENV=build rollup --config",
"validate-doc": "documentation lint src/**",
"generate-doc": "rimraf docs/docs && documentation build src/** -f html -o docs/docs",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/harrison-ifeanyichukwu/forensic-js.git"
},
"keywords": [
"web-development",
"event-management",
"fetch-api",
"queue-processor",
"utility-functions",
"xml-parser",
"xpath-api"
],
"author": "Harrison Ifeanyichukwu <Harrisonifeanyichukwu@gmail.com> (http://fjsfoundations.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/harrison-ifeanyichukwu/forensic-js/issues"
},
"homepage": "https://github.com/harrison-ifeanyichukwu/forensic-js#readme",
"devDependencies": {
"@harrison-ifeanyichukwu/xml-serializer": "1.2.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"chai": "4.1.2",
"commitizen": "2.10.1",
"coveralls": "3.0.2",
"cz-conventional-changelog": "2.1.0",
"documentation": "8.1.1",
"istanbul": "0.4.5",
"jsdoc": "3.5.5",
"jsdom": "11.12.0",
"mocha": "5.2.0",
"nyc": "12.0.2",
"r-server": "1.0.1",
"rimraf": "2.6.2",
"rollup": "0.63.5",
"rollup-all": "1.3.0",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-uglify": "4.0.0",
"semantic-release": "15.9.16",
"wicked-good-xpath": "1.3.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"nyc": {
"require": [
"babel-register",
"./test/setup.js"
],
"include": [
"src/modules/**/*.js"
]
}
}