-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "fly-json-odm",
"version": "1.22.0",
"description": "An Object Document Mapper to handle JSON on the fly for NodeJS or Browser",
"main": "src/flyjson.js",
"types": "src/flyjson.d.ts",
"scripts": {
"browserify": "browserify src/flyjson.js --s FlyJson -o dist/flyjson.js",
"babel": "babel dist/flyjson.js --out-file dist/flyjson.js",
"minify": "uglifyjs dist/flyjson.js -c -m -o dist/flyjson.min.js",
"build": "semistandard && npm run browserify && npm run babel && npm run minify",
"test": "semistandard && nyc --reporter=html --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aalfiann/fly-json-odm.git"
},
"keywords": [
"util",
"utility",
"odm",
"mapper",
"on-the-fly",
"nosql",
"json",
"json-odm",
"json-fly",
"json-memory",
"json-nosql",
"json-transform",
"json-mapper",
"json-query",
"browser"
],
"author": "M ABD AZIZ ALFIAN",
"license": "MIT",
"bugs": {
"url": "https://github.com/aalfiann/fly-json-odm/issues"
},
"homepage": "https://github.com/aalfiann/fly-json-odm#readme",
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-transform-spread": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@types/node": "^20.4.9",
"browserify": "^17.0.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"semistandard": "^17.0.0",
"typescript": "^5.1.6",
"uglify-js": "^3.12.7"
},
"semistandard": {
"ignore": [
"dist/*",
"src/*.ts"
]
}
}