-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.08 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
{
"name": "nano-slice",
"version": "1.0.0",
"description": "nano version for slice of string and array like Python.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NanoPackage/nano-slice.git"
},
"keywords": [
"nano",
"nano-slice",
"nano-package"
],
"author": "hustcc",
"license": "MIT",
"bugs": {
"url": "https://github.com/NanoPackage/nano-slice/issues"
},
"homepage": "https://github.com/NanoPackage/nano-slice#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"jest": "^21.2.1"
},
"jest": {
"testRegex": "(/test)\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverage": true,
"collectCoverageFrom": [
"*.{js}",
"!**/node_modules/**",
"!**/vendor/**"
],
"moduleDirectories": [
"node_modules"
],
"transform": {
"^.+\\.js?$": "babel-jest"
}
}
}