-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "nested-prop-paths",
"version": "0.5.4",
"homepage": "https://github.com/HBDunn/nested-prop-paths",
"description": "find or check all paths/values to a key/prop in array of objects or object - when unknown full path to a prop/key",
"main": "./dist/index.js",
"browser": "./lib/index.js",
"module": "./module/index.js",
"files":[
"dist/"
],
"scripts": {
"test": "BABEL_ENV=jest jest ",
"build": "babel ./src -d ./dist --source-maps && cp ./test/mocks.js ./dist/example",
"build-index": "babel ./index.js -d ./dist && babel ./index.js -d ./lib && babel ./index.js -d ./module",
"build-browser": "BABEL_ENV=browser babel ./src -d ./lib/ --source-maps --copy-files",
"build-module": "BABEL_ENV=module babel ./src -d ./module --source-maps --copy-files",
"clean_dist": "rm -r ./dist &> /dev/null",
"clean_lib": "rm -r ./lib &> /dev/null",
"clean_module": "rm -r ./module &> /dev/null",
"clean": " npm run clean_dist && npm run clean_lib && npm run clean_module",
"build-all": "npm run clean && npm run build && npm run build-browser && npm run build-module && npm run build-index"
},
"pre-commit": "build-all",
"keywords": [
"json",
"data",
"nested",
"paths",
"values",
"object",
"array",
"unknown",
"check"
],
"author": "hdunn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/HBDunn/nested-prop-paths"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"babel-eslint": "^10.1.0",
"eslint": "6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "25.1.0",
"pre-commit": "^1.2.2",
"travis-cli": "^1.0.9"
}
}