-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.75 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
{
"name": "nserializejson",
"version": "1.0.32-alpha.1",
"keywords": [
"json",
"form",
"serializer",
"serialization",
"serialize",
"vanilla",
"jquery.serializeJSON",
"html"
],
"description": "HTML form JSON serializer on Vanilla JS",
"scripts": {
"build:esm": "node ./node_modules/typescript/bin/tsc --project ./tsconfig.json --module es2015 --outDir ./dist/esm -d && node ./process-dts.js",
"build:cjs": "node ./node_modules/typescript/bin/tsc --project ./tsconfig.json --module commonjs --outDir ./dist/cjs",
"build": "npm run clean && npm run build:browser && npm run build:esm && npm run build:cjs",
"build:browser": "node ./node_modules/webpack/bin/webpack.js --config ./webpack.config.js --mode production",
"clean": "node ./node_modules/rimraf ./dist",
"watch": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config ./webpack.config.js --mode development"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/esm/index.d.ts",
"umd": "./dist/browser/nserializejson.min.js",
"umd_name": "NSerializeJson",
"devDependencies": {
"@babel/core": "7.5.5",
"webpack-dev-server": "3.8.0",
"rimraf": "2.6.3",
"uglify-js": "3.6.0",
"babel-plugin-add-module-exports": "1.0.2",
"babel-loader": "8.0.6",
"webpack": "4.39.1",
"webpack-cli": "3.3.6",
"ts-loader": "6.0.4",
"typescript": "3.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickMaev/NSerializeJson.git"
},
"author": "Nikolay Maev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NickMaev/NSerializeJson/issues"
},
"homepage": "https://github.com/NickMaev/NSerializeJson#readme"
}