-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@reactual/c",
"version": "0.1.3",
"description": "a node.js console.log prettifier :art:",
"main": "lib/index.js",
"module": "lib/index.js",
"repository": "https://github.com/reactual/c",
"license": "MIT",
"author": "Reactual <[email protected]> (https://www.github.com/reactual)",
"contributors": [{
"name": "Stephen Richardson",
"url": "https://www.github.com/sbr464"
}],
"private": false,
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"b": "yarn build",
"build-dev": "BABEL_ENV=development babel -d lib/ src/ --quiet",
"build": "BABEL_ENV=production babel -d lib/ src/ --quiet --compact=true --no-comments",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json"
},
"dependencies": {
"chalk": "^2.3.0",
"jsome": "^2.3.26"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"babel-cli": "^6.26.0",
"babel-minify": "^0.2.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jsdoc": "^3.5.5",
"nodemon": "^1.13.3",
"rimraf": "^2.6.2"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/docs/",
"/node_modules/",
"/lib/",
"_dev",
"_explore"
]
}
}