-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 881 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 881 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
{
"name": "@hello10/color",
"version": "1.1.1",
"description": "Color stuff",
"main": "dist/index.js",
"source": "src/index.js",
"license": "MIT",
"author": {
"name": "Stephen Handley",
"email": "stephen@hello10.com",
"url": "https://hello10.com"
},
"scripts": {
"build": "microbundle --target node",
"clean": "rm -rf node_modules && rm -rf dist",
"dev": "microbundle watch --target node",
"lint": "eslint ./src",
"test": "yarn nyc mocha --ui bdd **/*.test.js"
},
"dependencies": {
"@hello10/util": "1.5.0"
},
"devDependencies": {
"@hello10/eslint-config": "1.0.2",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-promise": "4.2.1",
"microbundle": "0.12.0",
"mocha": "7.1.2",
"nyc": "15.0.1"
}
}