-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1 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
{
"name": "flooent",
"version": "2.5.1",
"description": "Fluent interface to provide an expressive syntax for common manipulations.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"copymeta": "cp README.md package.json dist",
"generate-fp-exports": "node ./scripts/generate-fp-exports.js",
"build": "npm run clean && npm run generate-fp-exports && tsc && npm run copymeta",
"publish:dist": "npm run build && cd dist && npm publish",
"publish:beta": "npm run build && cd dist && npm publish --tag beta",
"test": "node japaFile.js",
"coverage": "nyc --reporter=lcov npm test"
},
"keywords": [
"array",
"string",
"object oriented",
"fluent",
"oop"
],
"repository": {
"type": "git",
"url": "https://github.com/MZanggl/flooent"
},
"author": "Michael Zanggl",
"license": "MIT",
"devDependencies": {
"japa": "^3.0.1",
"nyc": "^15.1.0",
"ts-file-exports": "^0.0.4",
"typescript": "^4.2.2"
}
}