-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
46
47
48
{
"name": "applet",
"version": "0.0.10",
"description": "A very small and expressive middleware framework",
"main": "index.js",
"jsnext:main": "src/applet.js",
"module": "src/applet.js",
"browser": "browser.js",
"typings": "index.d.ts",
"scripts": {
"build": "rollup --config scripts/build.js",
"docs": "node scripts/docs.js",
"commitmsg": "commitlint --env GIT_PARAMS --config scripts/commit.js",
"prepublishOnly": "npm run test && npm run docs",
"test": "npm run build && jest"
},
"repository": "https://github.com/appletjs/applet.git",
"keywords": [
"promise",
"middleware",
"framework",
"async",
"applet"
],
"author": "Maofeng Zhang <japplet@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/appletjs/applet/issues"
},
"homepage": "https://github.com/appletjs/applet#readme",
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"highlightjs": "^9.10.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"marked": "^0.4.0",
"rollup": "^0.60.2",
"rollup-plugin-buble": "^0.19.2"
},
"jest": {
"testMatch": [
"**/*.spec.js"
],
"bail": true,
"testEnvironment": "node"
}
}