-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 KB
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
{
"name": "@cotep/std-nice",
"version": "1.0.9",
"description": "NodeJS tool for fancy object display.",
"main": "./build/src/devutils.js",
"scripts": {
"build": "grunt default",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"test": "npm run build && cd ./build && mocha -t 30000 -Sb \"tests/*.js\" && cd ../"
},
"keywords": [
"nodejs",
"log",
"dev"
],
"author": "COTEP",
"contributors": [
{
"name": "Gregory Neut <g.neut@cotep.com>"
},
{
"name": "Alrick Emilien <a.emilien@cotep.com>"
}
],
"repository": {
"type": "git",
"url": "https://github.com/COTEP-DEV/std-nice.git"
},
"license": {
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
},
"homepage": "https://github.com/COTEP-DEV/std-nice#readme",
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.4.4",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"babel-eslint": "^10.0.1",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"grunt": "^1.0.4",
"grunt-babel": "^8.0.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-symlink": "^1.0.0",
"grunt-newer": "^1.3.0",
"load-grunt-tasks": "^3.5.2",
"mocha": "^5.0.0"
},
"dependencies": {
"colors": "^1.3.2",
"@babel/runtime": "^7.4.4"
},
"engines": {
"node": ">=10.0.0"
},
"os": [
"darwin",
"linux"
]
}