-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "ios-device-list",
"version": "1.1.37",
"description": "Searchable collection of Apple devices",
"main": "index.js",
"browser": "dist/ios-device-list.min.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "ava && npm run lint",
"lint": "eslint index.js build-devices.js saved/save.js",
"save": "node saved/save.js",
"devices": "node build-devices.js",
"webpack-dev": "npx webpack build",
"webpack-prod": "npx webpack build --config webpack.prod.config.js",
"dist": "npm run devices && npm run webpack-dev && npm run webpack-prod"
},
"author": "Peter Bakondy <pbakondy@gmail.com>",
"license": "MIT",
"keywords": [
"ios",
"iphone",
"ipad",
"ipod",
"watch",
"device",
"devices",
"model",
"fccid",
"list"
],
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"ava": "^4.3.3",
"babel-loader": "^8.2.5",
"eslint": "^8.23.1",
"jsdom": "^20.0.0",
"uglify-js": "^3.17.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.uniq": "^4.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pbakondy/ios-device-list.git"
},
"bugs": {
"url": "https://github.com/pbakondy/ios-device-list/issues"
},
"homepage": "https://github.com/pbakondy/ios-device-list#readme"
}