forked from KyleAMathews/modularscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "modularscale",
"description": "Calculate a value from a modular scale",
"version": "2.0.1",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/KyleAMathews/modularscale/issues"
},
"dependencies": {
"lodash.isnumber": "^3.0.0"
},
"devDependencies": {
"chai": "^2.1.0",
"coffee-script": "^1.9.1",
"coffeelint": "^1.9.2",
"mocha": "^2.1.0",
"mocha-unfunk-reporter": "^0.4.0",
"pre-commit": "^1.0.5"
},
"homepage": "https://github.com/KyleAMathews/modularscale",
"keywords": [
"modular",
"modular-scale",
"modularscale",
"scale",
"typography"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/KyleAMathews/modularscale.git"
},
"scripts": {
"build": "coffee -o dist/ -c src/index.coffee",
"test-watch": "NODE_ENV=test node_modules/.bin/mocha -w --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter",
"test": "node_modules/.bin/coffeelint src/* && NODE_ENV=test node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register -R mocha-unfunk-reporter"
}
}