-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.37 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.37 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
{
"name": "object-browser",
"version": "1.0.9",
"description": "A utility to access object value information using dot and array notations",
"main": "dist/object-browser.js",
"module": "dist/object-browser.es.js",
"scripts": {
"build": "rollup -c && copyfiles README.md ./dist",
"test": "mocha ./test/**/*.test.js ./test/*.test.js --require @babel/register",
"test:coverage": "nyc --reporter=text npm run test",
"dev": "npm test & run-when-changed --watch \"src/**/*.js\" --watch \"test/**/*.js\" --exec \"npm test\"",
"dev:coverage": "npm run test:coverage & run-when-changed --watch \"src/**/*.js\" --watch \"test/**/*.js\" --exec \"npm run test:coverage\""
},
"author": "Dmitriy A. Nesterkin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aptivator/object-browser.git"
},
"bugs": {
"url": "https://github.com/aptivator/object-browser/issues"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"@rollup/plugin-babel": "^5.3.1",
"chai": "^4.2.0",
"copyfiles": "^2.4.1",
"lodash.pick": "^4.4.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rollup": "^2.77.2",
"rollup-plugin-generate-package-json": "^3.2.0",
"run-when-changed": "^2.1.0"
}
}