-
Notifications
You must be signed in to change notification settings - Fork 479
/
package.json
83 lines (83 loc) · 1.91 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
77
78
79
80
81
82
83
{
"name": "flexibility",
"version": "2.0.1",
"description": "A JavaScript polyfill for Flexbox",
"main": "lib/index.js",
"repository": "jonathantneal/flexibility",
"keywords": [
"flex",
"display",
"direction",
"wrap",
"flow",
"justify",
"content",
"align",
"items",
"content",
"order",
"grow",
"shrink",
"basis",
"self",
"auto",
"start",
"end",
"center",
"baseline",
"stretch",
"space",
"between",
"around",
"polyfill",
"ie",
"internet",
"explorer",
"layout"
],
"files": [
"LICENSE.md",
"flexibility.js",
"lib"
],
"author": "Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com)",
"license": "MIT",
"bugs": "https://github.com/jonathantneal/flexibility/issues",
"homepage": "https://github.com/jonathantneal/flexibility#readme",
"watch": {
"compile-w-map": {
"patterns": [
"lib",
"test"
],
"extensions": "js",
"quiet": "true"
}
},
"scripts": {
"compile": "browserify lib/index.js --standalone flexibility --outfile flexibility.js",
"compile-w-map": "browserify lib/index.js --debug --standalone flexibility --outfile flexibility.js",
"compress": "uglifyjs flexibility.js --compress --mangle --output flexibility.js",
"compress-w-map": "uglifyjs flexibility.js --compress --mangle --source-map flexibility.js.map --output flexibility.js",
"build": "npm run compile && npm run compress",
"eslint": "eslint ./lib/",
"prepublish": "npm run build",
"test": "npm run eslint",
"watch": "npm-watch"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"browserify": "^16.2.2",
"eslint": "^5.2.0",
"eslint-config-dev": "^2.0.0",
"npm-watch": "^0.3.0",
"uglify-js": "^3.4.6"
},
"engines": {
"node": ">=0.12.0"
},
"eslintConfig": {
"extends": "dev"
}
}