forked from fertrig/wa-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 947 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 947 Bytes
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": "wa-clone",
"version": "1.0.0",
"description": "Repo for project-based class.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -Rf dist && babel src -d dist",
"babel-node": "babel-node",
"nodemon": "nodemon --exec npm run babel-node",
"eslint": "eslint",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozoth/wa-clone.git"
},
"engines": {
"node": "6.10.0",
"npm": "3.10.10"
}
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ozoth/wa-clone/issues"
},
"homepage": "https://github.com/ozoth/wa-clone#readme",
"dependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"nodemon": "^1.11.0"
}
}