-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "rest-api-docs",
"version": "0.0.1",
"description": "A REST API Documentation tool for WordPress.",
"main": "rest-api-doc.php",
"directories": {
"test": "tests"
},
"scripts": {
"sass": "node-sass ./src/scss/rest-api-docs.scss ./assets/css/rest-api-docs.css --source-map true --output-style compressed",
"watch:sass": "watch \"npm run sass\" ./src/scss",
"webpack": "webpack",
"watch:js": "watch \"npm run webpack\" ./src/js",
"build": "npm run sass && npm run webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuno1/rest-api-docs.git"
},
"keywords": [
"wordpress",
"plugin"
],
"author": "Kunoichi INC.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/kuno1/rest-api-docs/issues"
},
"homepage": "https://github.com/kuno1/rest-api-docs#readme",
"devDependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.7",
"vue": "^2.5.16",
"vue-loader": "^14.2.2",
"vue-template-compiler": "^2.5.16",
"watch": "^1.0.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13"
}
}