-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 952 Bytes
/
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
{
"name": "rwl",
"version": "2.0.0",
"description": "read Tucson rwl files in JavaScript",
"jsnext:main": "dist/rwl.es.js",
"source": "src/index.js",
"module": "dist/rwl.es.js",
"esmodules": "dist/rwl.modern.js",
"main": "dist/rwl.js",
"umd:main": "dist/rwl.umd.js",
"type": "module",
"scripts": {
"build": "microbundle",
"pretest": "npm run build",
"test": "jest",
"prepublishOnly": "npm run test"
},
"keywords": [
"rwl",
"tucson",
"dendrochronology",
"tree rings",
"JSON"
],
"author": {
"name": "Russ Biggs",
"url": "https://russbiggs.com"
},
"homepage": "https://github.com/russbiggs/rwl",
"license": "ISC",
"repository": "https://github.com/russbiggs/rwl.git",
"devDependencies": {
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"prettier": "^2.2.1"
}
}