-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "yalf",
"version": "0.1.2",
"description": "Yet Another (JavaScript) Logging Framework.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist",
"lib"
],
"scripts": {
"clean": "./node_modules/.bin/rimraf dist lib",
"lint": "./node_modules/.bin/eslint src",
"build": "run-s clean && run-p build:es build:cjs build:lib:es",
"build:es": "NODE_ENV=es ./node_modules/.bin/rollup -c",
"build:cjs": "NODE_ENV=cjs ./node_modules/.bin/rollup -c",
"build:lib:es": "BABEL_ENV=es ./node_modules/.bin/babel src -d lib",
"test": "./node_modules/.bin/jest",
"prepublishOnly": "npm run lint && npm run build && npm run test"
},
"author": "Steven Goossens",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stevengssns/javascript-yalf.git"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.4.0"
},
"dependencies": {},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"jest": true,
"es6": true
},
"extends": "airbnb",
"parser": "babel-eslint"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"testURL": "http://localhost%26quot%3B/"
}
}