-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (35 loc) · 991 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
{
"name": "@tatatap-com/sowhat",
"description": "Anything goes, organizational and utility function notation parser.",
"version": "2.1.3",
"license": "MIT",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"main": "./dist/sowhat.js",
"dependencies": {
"moo": "0.5.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"chai": "^4.3.4",
"chai-arrays": "^2.2.0",
"esm": "^3.2.25",
"mocha": "^9.2.2",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2"
},
"exports": {
".": "./dist/sowhat.js",
"./cjs": "./dist/sowhat.cjs"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "./node_modules/.bin/rollup -c rollup.config.js",
"test": "env NODE_ENV=test ./node_modules/.bin/mocha --recursive --exit ./test/"
}
}