-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
131 lines (131 loc) · 4.07 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "futil",
"version": "1.76.4",
"description": "F(unctional) util(ities). Resistance is futile.",
"main": "lib/futil.js",
"comments": {
"devDependencies": "typescript and eslintconfig dependencies should get removed when refactor back to workspaces"
},
"scripts": {
"build": "webpack",
"danger": "duti",
"test": "babel-node ./node_modules/mocha/bin/_mocha --require ./test/init.js",
"test:watch": "chokidar 'src/*.js' 'test/*.js' -c 'yarn test'",
"browser": "TEST_ENV=browser karma start karma.conf.js",
"browser:local": "karma start karma.conf.js",
"coverage": "nyc yarn test",
"cicoverage": "nyc --reporter=lcov yarn test",
"lint": "eslint src docs/beta/src test scripts",
"lint:ci": "yarn run lint -o lint-results.json -f json",
"lint-fix": "eslint src docs/beta/src test scripts --fix",
"fmt": "prettier -w .",
"duti:fix": "yarn run readme && yarn run fmt && yarn run lint-fix && yarn run fmt",
"prepublish": "webpack",
"rename": "node renamePackage",
"docsfolder": "node -r esm ./scripts/docs-folder.js",
"prejsdoc": "yarn run docsfolder",
"jsdoc": "jsdoc -X ./src > ./docs/data/jsdoc.json",
"predocs": "yarn run jsdoc",
"docs": "node -r esm ./scripts/generate-docs.js",
"prereadme": "yarn run docs",
"readme": "node -r esm ./scripts/generate-readme.js",
"tests-json": "node -r esm ./scripts/generate-tests-json.js",
"copy-docs": "node -r esm ./scripts/copy-docs.js",
"docs-site": "yarn run readme && yarn run tests-json && yarn run copy-docs",
"predocs-publish": "yarn run docs-site",
"docs-publish": "cd docs/beta && yarn run deploy",
"version": "yarn changeset version && yarn install --mode=update-lockfile",
"publish": "yarn npm publish --tolerate-republish"
},
"author": {
"name": "Samuel Greene",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"lodash": "^4.17.4"
},
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
"@babel/plugin-transform-object-rest-spread"
]
},
"nycrc": {
"extends": "@istanbuljs/nyc-config-babel",
"all": true,
"instrument": true,
"extension": [
".ts",
".tsx"
],
"check-coverage": true
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-object-rest-spread": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@changesets/cli": "^2.26.2",
"babel-eslint": "^9.0.0",
"babel-loader": "^9.1.3",
"bluebird": "^3.5.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"chokidar": "^3.3.0",
"chokidar-cli": "^2.1.0",
"codacy-coverage": "^3.0.0",
"coveralls": "^3.0.0",
"danger": "^11.3.0",
"duti": "^0.15.3",
"eslint": "^8.24.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-mocha": "^10.1.0",
"esm": "^3.2.25",
"jest": "^29.4.1",
"jsdoc": "^3.6.11",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^2.2.0",
"karma-json-reporter": "^1.2.1",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"read-pkg": "^5.2.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.0.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"write-pkg": "^4.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/smartprocure/futil-js.git"
},
"bugs": {
"url": "https://github.com/smartprocure/futil-js/issues"
},
"homepage": "https://github.com/smartprocure/futil-js#readme",
"runkitExampleFilename": "runkit.example.js",
"readme": "README.md",
"packageManager": "[email protected]"
}