This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "the-color-of-air",
"version": "0.1.1",
"description": "A color spectrum representing air temperature",
"homepage": "https://github.com/boneskull/the-color-of-air",
"author": {
"name": "Christopher Hiller",
"email": "boneskull@boneskull.com",
"url": "https://boneskull.com"
},
"main": "dist/the-color-of-air.js",
"module": "src/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"air",
"color",
"temperature",
"weather",
"fahrenheit",
"celsius",
"centigrade",
"degrees",
"heat",
"cold",
"cool",
"warm",
"rainbow",
"spectrum",
"spectra",
"weather-map",
"map",
"forecast"
],
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.0",
"babel-register": "^6.23.0",
"babili-webpack-plugin": "^0.0.11",
"eslint": "^3.17.0",
"eslint-config-semistandard": "^8.0.0",
"eslint-config-standard": "^7.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"lodash.range": "^3.2.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"unexpected": "^10.26.3",
"webpack": "^2.3.2",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">=4"
},
"license": "Apache-2.0",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"clean": "rimraf dist",
"lint": "eslint '*.js' src test --fix",
"prepare": "npm run clean && npm run build",
"pretest": "npm run lint",
"preversion": "npm test",
"test": "mocha --require babel-register"
},
"browser": "dist/the-color-of-air.min.js",
"dependencies": {}
}