-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (73 loc) · 1.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mengt",
"version": "1.0.0",
"description": "javascript functional ",
"main": "dist/mengt.cjs.js",
"module": "dist/mengt.esm.js",
"browser": "dist/mengt.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "jest",
"docs": "jsdoc2md src/*.js > README.md",
"test:c": "jest --coverage",
"debugger": "node --inspect-brk ./node_modules/jest/bin/jest --runInBand --no-cache --no-watchman"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-push": " "
}
},
"keywords": [
"es2015",
"function",
"programing",
"fp",
"es6",
"javascript",
"functional"
],
"author": "ninja",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-preset-es2015-rollup": "^3.0.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"jsdoc-to-markdown": "^4.0.1",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.0",
"uglify-es": "^3.3.9",
"uglify-js": "^3.4.9"
},
"files": [
"dist"
],
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"verbose": true,
"moduleFileExtensions": [
"js"
],
"globals": {
"__DEV__": true
},
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}