-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
37 lines (37 loc) · 823 Bytes
/
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
{
"name": "@any86/sleep",
"version": "0.0.1",
"description": "睡眠",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"keywords": [
"sleep"
],
"files": [
"dist"
],
"author": "any86",
"homepage": "https://github.com/any86/my/packages/sleep#readme",
"license": "ISC",
"directories": {
"test": "__tests__"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/any86/my.git"
},
"scripts": {
"test": "jest",
"dev": "rimraf dist && rollup -c --watch --environment NODE_ENV:development",
"build": "rimraf dist && rollup -c"
},
"bugs": {
"url": "https://github.com/any86/my/issues"
}
}