-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "logline",
"version": "1.1.5",
"description": "logging the frontend",
"main": "dist/logline.min.js",
"scripts": {
"test": "mocha-headless-chrome -f test/index.html -a no-sandbox",
"configure": "gulp configure",
"dev": "rollup -c build/rollup.dev.js -w",
"build:dev": "rollup -c build/rollup.build.js",
"build:prod": "cross-env NODE_ENV=production rollup -c build/rollup.build.js",
"build": "npm run build:dev && npm run build:prod && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/latel/logline.git"
},
"keywords": [
"log",
"frontend",
"js",
"html",
"websql",
"localstroage"
],
"author": "latel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/latel/logline/issues"
},
"homepage": "https://github.com/latel/logline#readme",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.7.0",
"chai": "^3.5.0",
"colors": "^1.1.2",
"cross-env": "^5.1.3",
"fs-extra": "^1.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-compile-handlebars": "^0.6.1",
"gulp-rename": "^1.2.2",
"html-loader": "^0.4.3",
"install": "^0.12.1",
"jsonfile": "^2.4.0",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"mocha-headless-chrome": "1.7.1",
"moment": "^2.13.0",
"npm": "^6.4.1",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-license": "^0.2.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^4.3.1"
},
"dependencies": {
"lodash": "^4.17.10",
"lodash-es": "^4.17.10"
}
}