-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 818 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 818 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
{
"name": "functional-mixins",
"version": "1.0.0",
"description": "Functional Mixins Tuturial",
"main": "source/index.js",
"scripts": {
"lint": "eslint source",
"test": "babel-node source/index.test.js",
"watch": "watch 'clear && npm run -s lint && npm run -s test' source"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-javascript-courses/functional-mixins.git"
},
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/learn-javascript-courses/functional-mixins/issues"
},
"homepage": "https://github.com/learn-javascript-courses/functional-mixins#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"eslint": "3.19.0",
"tape": "4.6.3",
"watch": "1.0.2"
}
}