-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
{
"name": "object-path-parse",
"version": "0.1.0",
"description": "parse the object property string",
"main": "lib/index.js",
"scripts": {
"test": "webpack && BABEL_JEST_STAGE=0 jest",
"build": "webpack",
"coveralls": "webpack && BABEL_JEST_STAGE=0 jest && cat ./coverage/lcov.info | coveralls",
"dev": "webpack -w"
},
"author": "https://github.com/zinkey",
"homepage": "https://github.com/flutejs/object-path-parse",
"repository": {
"type": "git",
"url": "https://github.com/flutejs/object-path-parse"
},
"bugs": {
"url": "https://github.com/flutejs/object-path-parse/issues"
},
"licenses": "MIT",
"dependencies": {
"traverse": "~0.6.6"
},
"devDependencies": {
"babel": "5",
"babel-jest": "~5.3.0",
"babel-loader": "5.3.3",
"coveralls": "~2.11.4",
"jest-cli": "~0.8.0",
"jison-loader": "~1.0.0",
"webpack": "1.12.4"
},
"tonicExampleFilename": "example.js",
"browser": {
"fs": false
},
"files": [
"lib"
],
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/*",
"<rootDir>/lib/*"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testDirectoryName": "test",
"collectCoverage": true,
"collectCoverageOnlyFrom": {
"./lib/index.js": true
}
},
"keywords": [
"immutable",
"persistent",
"data"
]
}