-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 916 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
{
"name": "filendar",
"version": "0.0.1",
"description": "",
"main": "dist/filendar.js",
"scripts": {
"preversion": "npm test",
"version": "npm run compress && gulp && git add -A",
"postversion": "git push && git push --tags",
"pretest": "npm run build",
"test": "mocha -R spec",
"build:dev": "webpack --progress",
"build": "webpack --progress --mode production"
},
"files": [
"LICENCE",
"README.md",
"dist",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://[email protected]/pandanoir/filendar.git"
},
"author": "Naoto Ikuno <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pandanoir/filendar/issues"
},
"homepage": "https://github.com/pandanoir/filendar#readme",
"devDependencies": {
"mocha": "3.2.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}