-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
67 lines (67 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
{
"name": "ferrum",
"version": "1.9.4",
"description": "Features from the rust language in javascript: Provides Traits/Type classes & an advanced library for working with sequences/iterators in js.",
"main": "src/index.js",
"scripts": {
"test": "ferrum.doctest exec -s src --mdsrc README.md -c 'nyc --reporter=text --reporter=lcov --check-coverage --branches 90 --statements 90 --lines 90 mocha --reporter mocha-multi-reporters --reporter-options configFile=.mochaReportersConfig.json --require source-map-support/register -t 20000 \"$DOCTEST_FILE\" test'",
"test-ci": "npm run test && codecov",
"lint": "./node_modules/.bin/eslint src test",
"semantic-release": "semantic-release",
"docs": "jsdoc -c .jsdoc.json",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/ferrum"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/ferrum/issues"
},
"homepage": "https://github.com/adobe/ferrum#readme",
"dependencies": {
"fastestsmallesttextencoderdecoder": "1.0.22",
"lodash.isplainobject": "4.0.6",
"xxhashjs": "0.2.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.3.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"ajv": "8.6.3",
"codecov": "3.8.3",
"commitizen": "4.2.5",
"cz-conventional-changelog": "^3.0.1",
"docdash": "git+https://github.com/koraa/docdash.git",
"eslint": "8.2.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.2",
"ferrum.doctest": "1.0.5",
"jsdoc": "^3.6.10",
"junit-report-builder": "3.0.0",
"lint-staged": "13.0.2",
"mocha": "10.0.0",
"mocha-junit-reporter": "2.0.2",
"mocha-multi-reporters": "1.5.1",
"nyc": "15.1.0",
"object-hash": "3.0.0",
"semantic-release": "^19.0.2"
},
"renovate": {
"extends": [
"config:base",
"schedule:earlyMondays"
],
"timezone": "Europe/Zurich",
"packageRules": [
{
"packagePatterns": [
".*"
],
"groupName": "any"
}
]
}
}