source: node_modules/traverse/package.json@ 75f5086

main
Last change on this file since 75f5086 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.0 KB
Line 
1{
2 "name": "traverse",
3 "version": "0.6.8",
4 "description": "traverse and transform objects by visiting every node on a recursive walk",
5 "main": "index.js",
6 "directories": {
7 "example": "example",
8 "test": "test"
9 },
10 "devDependencies": {
11 "@ljharb/eslint-config": "^21.1.0",
12 "aud": "^2.0.4",
13 "auto-changelog": "^2.4.0",
14 "es-value-fixtures": "^1.4.2",
15 "eslint": "=8.8.0",
16 "in-publish": "^2.0.1",
17 "npmignore": "^0.3.1",
18 "safe-publish-latest": "^2.0.0",
19 "tape": "^5.7.2"
20 },
21 "scripts": {
22 "prepack": "npmignore --auto --commentLines=autogenerated",
23 "prepublishOnly": "safe-publish-latest",
24 "prepublish": "not-in-publish || npm run prepublishOnly",
25 "lint": "eslint --ext=js,mjs .",
26 "pretest": "npm run lint",
27 "tests-only": "tape 'test/**/*.js'",
28 "test": "npm run tests-only",
29 "posttest": "aud --production",
30 "version": "auto-changelog && git add CHANGELOG.md",
31 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
32 },
33 "testling": {
34 "files": "test/*.js",
35 "browsers": {
36 "iexplore": [
37 "6.0",
38 "7.0",
39 "8.0",
40 "9.0"
41 ],
42 "chrome": [
43 "10.0",
44 "20.0"
45 ],
46 "firefox": [
47 "10.0",
48 "15.0"
49 ],
50 "safari": [
51 "5.1"
52 ],
53 "opera": [
54 "12.0"
55 ]
56 }
57 },
58 "repository": {
59 "type": "git",
60 "url": "git://github.com/ljharb/js-traverse.git"
61 },
62 "homepage": "https://github.com/ljharb/js-traverse",
63 "keywords": [
64 "traverse",
65 "walk",
66 "recursive",
67 "map",
68 "forEach",
69 "deep",
70 "clone"
71 ],
72 "author": {
73 "name": "James Halliday",
74 "email": "mail@substack.net",
75 "url": "http://substack.net"
76 },
77 "funding": {
78 "url": "https://github.com/sponsors/ljharb"
79 },
80 "license": "MIT",
81 "auto-changelog": {
82 "output": "CHANGELOG.md",
83 "template": "keepachangelog",
84 "unreleased": false,
85 "commitLimit": false,
86 "backfillLimit": false,
87 "hideCredit": true
88 },
89 "publishConfig": {
90 "ignore": [
91 ".github/workflows"
92 ]
93 },
94 "engines": {
95 "node": ">= 0.4"
96 }
97}
Note: See TracBrowser for help on using the repository browser.