-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.81 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.81 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "notation",
"version": "2.0.0",
"description": "Utility for modifying / processing the contents of Javascript objects or arrays via object notation strings or globs.",
"repository": "onury/notation",
"license": "MIT",
"author": {
"name": "Onur Yıldırım",
"email": "onur@cutepilot.com"
},
"main": "lib/notation.min.js",
"files": [
"lib",
"LICENSE"
],
"scripts": {
"lint": "eslint ./src",
"snyk": "snyk test",
"prebuild": "npm run snyk && npm run lint",
"build:dev": "webpack --mode=development --env.WEBPACK_OUT=development --progress --colors",
"build:prod": "webpack --mode=production --env.WEBPACK_OUT=production --progress --colors",
"build": "npm run build:prod && npm run build:dev",
"watch": "webpack --env.WEBPACK_OUT=nomin --progress --colors --watch",
"pretest": "npm run lint",
"test": "jest --testPathPattern='test/.+$' --verbose --no-cache --runInBand",
"cover": "jest --testPathPattern='test/.+$' --verbose --no-cache --runInBand --coverage",
"docs": "docma",
"docs:serve": "docma && docma serve",
"release": "npm run build && npm test && npm run docs"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"testRegex": "test/.+(test|spec)\\.js$",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"/backup/",
"/node_modules/",
"/test/tmp/",
"/test/coverage/",
"/test/config/",
"/test/data/",
"/test/helpers/",
"<rootDir>/lib/"
],
"transformIgnorePatterns": [
"/node_modules/",
"/test/(coverage|helpers|tmp|config|data)/"
],
"coverageDirectory": "<rootDir>/test/coverage",
"coveragePathIgnorePatterns": [
"/backup/",
"/coverage/",
"/node_modules/",
"/test/(helpers|tmp|config|data)/"
],
"modulePathIgnorePatterns": [
"/backup/",
"/coverage/",
"/test/helpers/",
"/test/tmp/",
"/test/config/",
"/test/data/",
"<rootDir>/lib/"
]
},
"keywords": [
"object",
"array",
"notation",
"dot-notation",
"property",
"bracket",
"glob",
"pointer",
"enumerable",
"template",
"placeholder",
"data",
"value",
"parse",
"build"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.8.1",
"jest-cli": "^26.4.2",
"lodash": "^4.17.20",
"snyk": "^1.388.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}