-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "scal",
"author": "Spencer Kelly <spencermountain@gmail.com> (http://spencermounta.in)",
"description": "calendar output",
"version": "0.0.2",
"main": "./src/index.js",
"unpkg": "./builds/scal.js",
"module": "./builds/scal.mjs",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"require": "./builds/scal.js",
"import": "./builds/scal.mjs",
"default": "./builds/scal.js"
}
},
"bin": {
"scal": "cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/scal.git"
},
"homepage": "https://github.com/spencermountain/scal",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "rollup -c --silent",
"test": "tape \"./tests/**/*.test.js\" | tap-dancer",
"testb": "npm run test:smoke && TESTENV=prod npm run test",
"watch": "amble ./scratch.js"
},
"files": [
"builds/"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"arrowParens": "avoid"
},
"dependencies": {
"spacetime": "^6.16.3"
},
"devDependencies": {
"@rollup/plugin-alias": "3.1.8",
"@rollup/plugin-node-resolve": "^13.0.6",
"amble": "1.3.0",
"rollup": "2.61.1",
"rollup-plugin-terser": "7.0.2",
"tap-dancer": "0.3.4",
"tape": "5.3.2"
},
"eslintIgnore": [
"builds/*.js"
],
"license": "MIT"
}