-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 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
{
"name": "magicpen",
"version": "6.2.4",
"description": "Styled output in both consoles and browsers",
"main": "./lib/MagicPen.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/sunesimonsen/magicpen.git"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text npm run test-node",
"lint": "eslint .",
"test": "npm run lint && npm run test-node && npm run test-browser",
"test-browser": "npm run prepublish && PSEUDO_BROWSER=yes mocha",
"test-node": "mocha",
"prepublish": "rollup -c"
},
"author": "Sune Simonsen",
"devDependencies": {
"coveralls": "^3.0.9",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.0.2",
"nyc": "^14.1.1",
"rollup": "^1.0.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"sinon": "1.9.1",
"unexpected": "9.5.0",
"unexpected-sinon": "6.4.2"
},
"dependencies": {
"ansi-styles": "2.0.0",
"color-diff": "0.1.7"
},
"license": "MIT"
}