-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "open-soql",
"private": false,
"version": "0.6.0",
"description": "Open source implementation of the SOQL.",
"keywords": [
"SOQL",
"query-engine",
"Graph query language",
"Object query language",
"graph-query",
"object-query",
"SQL",
"resolvers",
"DML",
"map-reduce",
"library",
"TypeScript"
],
"main": "./bin/index.js",
"module": "./modules/index.js",
"modules.root": "./modules",
"types": "./bin/index.d.ts",
"typings": "./bin/index.d.ts",
"engines": {
"node": ">=10.0"
},
"dependencies": {
"fruitsconfits": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@types/jasmine": "^3.10.2",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"clean": "run-s clean:cjs clean:esm clean:cli clean:spec clean:dist",
"clean:cjs": "rimraf ./bin",
"clean:esm": "rimraf ./modules",
"clean:cli": "rimraf ./bin.cli",
"clean:spec": "rimraf ./bin.test",
"clean:dist": "rimraf ./dist",
"build": "run-s build:cjs build:esm build:esm:2 build:esm:3 build:spec",
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --target es2015 --outDir bin --declaration --declarationDir ./bin",
"build:esm": "tsc --project tsconfig.build.json --outDir modules --declaration --declarationDir ./modules",
"build:esm:2": "node -e \"require('./build-scripts/copy-as-mjs').copyAsMjs('modules','modules')\"",
"build:esm:3": "shx cp ./build-scripts/pkg.json ./modules/package.json",
"build:spec": "webpack-cli --mode=development --config webpack.spec.config.js",
"build:dist": "run-s build:dist:prod",
"build:dist:prod": "run-s build:dist:prod:1",
"build:dist:dev": "run-s build:dist:dev:1",
"build:dist:prod:1": "cross-env NODE_ENV=production webpack-cli --mode=production --config webpack.dist.config.js",
"build:dist:dev:1": "webpack-cli --mode=development --config webpack.dist.config.js",
"lint": "run-s lint:main lint:spec",
"lint:main": "eslint -c ./.eslintrc.build.json --ext .js,.ts --ignore-pattern src/_spec/ ./src/",
"lint:spec": "eslint -c ./.eslintrc.spec.json --ext .js,.ts ./src/_spec/",
"test": "jasmine",
"prepublishOnly": "run-s clean build test lint"
},
"repository": {
"type": "git",
"url": "https://github.com/shellyln/open-soql.git"
},
"author": "shellyln",
"homepage": "https://shellyln.github.io/",
"bugs": {
"url": "https://github.com/shellyln/open-soql/issues"
},
"license": "ISC"
}