-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.34 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
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
111
112
113
114
{
"name": "@roseys/futils",
"version": "2.1.4",
"modulename": "futils",
"description": "My JavaScript utils library",
"source": "pkg/dist-src/index.js",
"types": "pkg/dist-types/index.d.ts",
"main": "pkg/dist-node/index.js",
"module": "dist-web/index.js",
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"scripts": {
"pika:fix": "node ./scripts/pathPika.js",
"pika:build": "pika-pack build",
"pika:publish": "yarn pika:fix && pika-pack publish --no-cleanup",
"pika:next": "pika-pack publish --any-branch --no-cleanup",
"pika:dry": "pika-pack publish --any-branch --no-cleanup --no-publish",
"commit": "git add . && git-cz",
"travis": "yarn run test:coverage && yarn run build",
"generate:index": "node scripts/create-export.js",
"build": "node scripts/create-export.js && yarn pika:build",
"build:docs": "cd docs && yarn && yarn build",
"clean": "rimraf es/* lib/* dist/**/*.js coverage/* ",
"clean:modules": "rimraf node_modules/*",
"test": "jest -o",
"test:wcache": "jest --coverage --ci --runInBand",
"test:quick": "jest --onlyChanged --runInBand --bail",
"test:clear": "jest --clearCache",
"test:watch": "jest --watchAll --runInBand",
"test:coverage": "jest --coverage",
"typedoc": "typedoc --options typedoc.ts",
"gendoc": "cd scripts && ts-node generate",
"update-docs": "yarn run typedoc && yarn run gendoc"
},
"keywords": [
"ramda",
"functional",
"js"
],
"author": "Josh Rosenstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoshRosenstein/futils/issues"
},
"homepage": "https://github.com/JoshRosenstein/futils#README",
"dependencies": {
"typed-is": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@pika/pack": "^0.3.5",
"@pika/plugin-build-node": "^0.3.14",
"@pika/plugin-build-types": "^0.3.14",
"@pika/plugin-build-web": "^0.3.14",
"@pika/plugin-standard-pkg": "^0.3.14",
"@pika/plugin-ts-standard-pkg": "^0.3.14",
"@roseys/art": "^1.0.1",
"eslint-config-rosey": "^1.0.1",
"@roseys/jest-preset": "^1.0.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.4",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.4.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-module-imports": "^1.0.0",
"codecov": "^3.0.0",
"commander": "^2.19.0",
"commitizen": "^3.0.4",
"coveralls": "3.0.3",
"cross-env": "^5.1.6",
"cz-cli": "^1.0.0",
"cz-conventional-kawaii": "^1.0.1",
"debug": "^4.1.0",
"eslint": "^5.16.0",
"fs-extra": "^7.0.1",
"globby": "8.0.1",
"jest": "^24.4.0",
"jest-circus": "^24.5.0",
"marked": "^0.6.1",
"replace-in-file": "^3.4.4",
"typedoc": "^0.14.2",
"typescript": "^3.4.5",
"typescript-test-utils": "^1.2.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-kawaii"
}
},
"publishConfig": {
"access": "public"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
}
}