-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "fpcode",
"version": "2.0.0",
"description": "Flower Password implementation for the browser and node.js",
"main": "dist/flowerpassword.js",
"umd:main": "dist/flowerpassword.umd.js",
"module": "dist/flowerpassword.m.js",
"source": "src/flowerpassword.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "microbundle --name fpCode --external all",
"dev": "microbundle watch",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish"
},
"dependencies": {
"blueimp-md5": "latest"
},
"devDependencies": {
"microbundle": "^0.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xlsdg/fpCode.js.git"
},
"keywords": [
"huami",
"flowerpassword",
"javascript",
"library",
"node",
"browser",
"fpcode"
],
"author": "xLsDg",
"license": "MIT",
"bugs": {
"url": "https://github.com/xlsdg/fpCode.js/issues"
},
"homepage": "https://github.com/xlsdg/fpCode.js"
}