-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
76 lines (76 loc) · 2.54 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "display.js",
"version": "v2.3.0",
"description": "A simple JavaScript framework for building ambitious UIs",
"main": "dist/display.min.js",
"directories": {
"doc": "docs"
},
"scripts": {
"run": "npm test",
"build": "npm test",
"test": "npm run gulp && npm run prettier && npm run lint && npm run eye && exit 0",
"gulp": "gulp",
"prettier": "prettier \"dist/**/*.js\" --write",
"lint": "./node_modules/.bin/eslint \"dist/**/*\" --fix",
"eye": "./node_modules/.bin/eye"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arguiot/DisplayJS.git"
},
"keywords": [
"Display.JS",
"display",
"DOM",
"manipulation",
"framework",
"javascript"
],
"author": "Arthur Guiot",
"license": "MIT",
"bugs": {
"url": "https://github.com/arguiot/DisplayJS/issues"
},
"homepage": "https://display.js.org",
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-helper-flip-expressions": "^0.2.0",
"babel-plugin-minify-builtins": "^0.2.0",
"babel-plugin-minify-constant-folding": "^0.2.0",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-minify-flip-comparisons": "^0.4.3",
"babel-plugin-minify-guarded-expressions": "^0.4.3",
"babel-plugin-minify-infinity": "^0.4.3",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-minify-replace": "^0.2.0",
"babel-plugin-minify-simplify": "^0.5.0",
"babel-plugin-minify-type-constructors": "^0.2.0",
"babel-plugin-transform-inline-consecutive-adds": "^0.2.0",
"babel-plugin-transform-member-expression-literals": "^6.8.5",
"babel-plugin-transform-merge-sibling-variables": "^6.8.6",
"babel-plugin-transform-minify-booleans": "^6.8.3",
"babel-plugin-transform-property-literals": "^6.8.5",
"babel-plugin-transform-remove-console": "^6.8.5",
"babel-plugin-transform-remove-debugger": "^6.8.5",
"babel-plugin-transform-remove-undefined": "^0.5.0",
"babel-plugin-transform-simplify-comparison-operators": "^6.8.5",
"babel-plugin-transform-undefined-to-void": "^6.8.3",
"babel-preset-babili": "^0.1.4",
"babel-preset-env": "^1.6.1",
"babili": "^0.1.4",
"buffer-shims": "^1.0.0",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.8.0",
"eye.js": "1.1.2",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-babili": "^0.1.4",
"gulp-rename": "^1.2.2",
"gulp-rigger": "^0.5.8",
"gulp-uglify": "^3.0.0",
"prettier": "1.16.4"
},
"dependencies": {}
}