-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "notepad-core",
"version": "0.3.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js src",
"dev": "chokidar \"src/**/*.js\" -c \"yalc publish && cd example/mini-program && yalc update\"",
"build": "npx babel src --out-dir lib",
"build-dev": "npm run build && npx babel src --out-dir example/mini-program/lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/woodemi/notepad-core-js.git"
},
"author": "woodemi-dev@woodemi.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/woodemi/notepad-core-js/issues"
},
"homepage": "https://github.com/woodemi/notepad-core-js#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.0.3",
"chokidar-cli": "^2.1.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2"
},
"dependencies": {
"wx-promise-pro": "^3.2.0"
}
}