-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "@pagedip/lib-logger",
"description": "Logging library for pagedip.",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://gitlab.com/beneaththeink/pagedip.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint src/ test/",
"clean": "shx rm -f index.js test.js",
"build-lib": "rollup src/index.js -c > index.js",
"build-test": "rollup test/index.js -c > test.js",
"build": "npm-run-all clean build-lib",
"test": "npm run build-test && node test.js",
"prepublish": "npm run build"
},
"dependencies": {
"chalk": "^1.1.3"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"eslint": "^3.19.0",
"npm-run-all": "^4.0.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-json": "^2.1.1",
"shx": "^0.2.2",
"strip-ansi": "^3.0.1",
"tape": "^4.6.3"
},
"files": [
"index.js"
]
}