-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 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
{
"author": "Chris Topher <c@creemama.com>",
"description": "Util.js - JavaScript utility methods",
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/plugin-transform-runtime": "7.21.4",
"@babel/preset-env": "7.21.4",
"chai": "4.3.7",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0"
},
"devDependencies-comments": [
"Including @babel/core prevents the following warning: ",
"npm WARN @babel/preset-env@7.4.4 requires a peer of @babel/core@^7.0.0-0 ",
"but none is installed. You must install peer dependencies yourself.",
"",
"Including eslint-config-prettier here prevents the following error:",
"ESLint couldn't find the config \"prettier\" to extend from. Please ",
"check that the name of the config is correct."
],
"license": "MIT",
"name": "utiljs",
"repository": {
"type": "git",
"url": "https://github.com/creemama/utiljs"
},
"scripts": {
"build": "./dev.sh build",
"test": "./dev.sh test"
},
"scripts-comments": [
"npm run test is the default build script for Travis CI."
]
}