forked from smartprocure/futil-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.33 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
{
"name": "futil-js",
"version": "1.67.3",
"description": "F(unctional) util(ities). Resistance is futile.",
"main": "lib/futil-js.js",
"scripts": {
"build": "npm run rollup:build",
"danger": "duti",
"test": "babel-node ./node_modules/mocha/bin/_mocha --require ./test/init.js",
"test:watch": "chokidar 'src/*.js' 'test/*.js' -c 'npm t'",
"browser": "TEST_ENV=browser karma start karma.conf.js",
"browser:local": "karma start karma.conf.js",
"coverage": "nyc --require babel-core/register --require babel-polyfill --require ./test/init.js mocha test",
"cicoveralls": "nyc report --reporter=text-lcov --require babel-core/register --require babel-polyfill --require ./test/init.js mocha test | coveralls",
"cicoverage": "nyc --reporter=lcov --require babel-core/register --require babel-polyfill --require ./test/init.js mocha test --reporter json > test-results.json",
"lint": "eslint dangerfile.js src/*.js test/*.js",
"lint:ci": "npm run lint -- -o lint-results.json -f json",
"lint-fix": "eslint dangerfile.js src/*.js test/*.js --fix",
"fmt": "prettier --write *.js; prettier --write '{src,test}/**/*.js'",
"duti:fix": "npm run fmt && npm run lint-fix && npm run fmt",
"prepublish": "npm run rollup:build",
"rollup:build": "rollup -c rollup.config.js --compact",
"rename": "node renamePackage"
},
"author": {
"name": "Samuel Greene",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"lodash": "^4.17.4"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"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": "^6.1.13",
"duti": "latest",
"eslint": "4.19.1",
"eslint-config-smartprocure": "^1.0.2",
"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": "^12.0.1",
"prettier": "^1.7.4",
"read-pkg": "^5.2.0",
"rollup": "^2.45.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-nodent": "^0.2.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.0.0",
"webpack": "^4.1.0",
"webpack-cli": "^3.0.0",
"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"
}