-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 789 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 789 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
{
"name": "@tegan/create-modular-scale",
"version": "0.0.2",
"description": "Create basic modular scale functions",
"main": "dist/create-modular-scale.cjs.js",
"module": "dist/create-modular-scale.esm.js",
"browser": "dist/create-modular-scale.umd.js",
"files": [
"dist/*.js"
],
"author": "Tegan Churchill <churchill.tegan@gmail.com>",
"license": "MIT",
"repository": "https://github.com/rawrmonstar/create-modular-scale",
"keywords": [
"modular scale",
"typography"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "tape tests/**/*.js",
"pretest": "npm run build",
"preversion": "npm test"
},
"devDependencies": {
"rollup": "^0.58.1",
"rollup-plugin-buble": "^0.19.2",
"tape": "^4.9.0"
}
}