@supernova-studio/pulsar-core 2.7.12 → 2.7.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +122 -121
package/package.json
CHANGED
|
@@ -1,124 +1,125 @@
|
|
|
1
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
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"src/**/*.spec.ts"
|
|
97
|
-
],
|
|
98
|
-
"extensions": [
|
|
99
|
-
"ts"
|
|
100
|
-
],
|
|
101
|
-
"require": [
|
|
102
|
-
"ts-node/register"
|
|
103
|
-
]
|
|
104
|
-
},
|
|
2
|
+
"name": "@supernova-studio/pulsar-core",
|
|
3
|
+
"version": "2.7.14",
|
|
4
|
+
"description": "Export Engine for Supernova DSM",
|
|
5
|
+
"main": "build/main/pulsar-core.js",
|
|
6
|
+
"types": "build/main/core/src/index.d.ts",
|
|
7
|
+
"repository": "https://github.com/Supernova-Studio/Pulsar",
|
|
8
|
+
"license": "UNLICENSED",
|
|
9
|
+
"author": "Supernova.io",
|
|
10
|
+
"keywords": [],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "run-s clean && run-p build:*",
|
|
13
|
+
"build:main": "npm run clean && webpack --mode production --config ./webpack.config.main.js",
|
|
14
|
+
"tsversion": "tsc -v",
|
|
15
|
+
"fix": "run-s fix:*",
|
|
16
|
+
"fix:tslint": "tslint --fix --project .",
|
|
17
|
+
"test": "run-s test:*",
|
|
18
|
+
"test-skipped:lint": "tslint --project .",
|
|
19
|
+
"test:unit": "nyc --silent ava --verbose --timeout=60s",
|
|
20
|
+
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
|
|
21
|
+
"reset": "git clean -dfx && git reset --hard && npm i",
|
|
22
|
+
"clean": "trash build test",
|
|
23
|
+
"publish-package": "npm run clean && npm run build:main && npm publish --access public"
|
|
24
|
+
},
|
|
25
|
+
"scripts-info": {
|
|
26
|
+
"info": "Display information about the package scripts",
|
|
27
|
+
"build": "Clean and rebuild the project",
|
|
28
|
+
"fix": "Try to automatically fix any linting problems",
|
|
29
|
+
"test": "Lint and unit test the project",
|
|
30
|
+
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
|
|
31
|
+
"version": "Bump package.json version, update CHANGELOG.md, tag release",
|
|
32
|
+
"reset": "Delete all untracked files and reset the repo to the last commit"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=8.9"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@jsep-plugin/object": "1.2.1",
|
|
39
|
+
"@jsep-plugin/ternary": "1.1.3",
|
|
40
|
+
"@supercharge/promise-pool": "^2.3.2",
|
|
41
|
+
"@supernova-studio/pulsar-language": "2.7.14",
|
|
42
|
+
"@supernova-studio/simple-parse-github-url": "^1.0.0",
|
|
43
|
+
"@supernovaio/sdk": "2.3.2",
|
|
44
|
+
"@supernovaio/supernova-sdk": "1.9.55",
|
|
45
|
+
"async-mutex": "^0.4.0",
|
|
46
|
+
"axios": "1.13.6",
|
|
47
|
+
"dot-prop": "^5.2.0",
|
|
48
|
+
"encoding": "0.1.13",
|
|
49
|
+
"fs": "0.0.1-security",
|
|
50
|
+
"https-proxy-agent": "^7.0.2",
|
|
51
|
+
"jsep": "1.3.8",
|
|
52
|
+
"jszip": "^3.5.0",
|
|
53
|
+
"lodash": "^4.17.23",
|
|
54
|
+
"md5": "^2.3.0",
|
|
55
|
+
"moment": "^2.27.0",
|
|
56
|
+
"node-fetch": "^2.7.0",
|
|
57
|
+
"octokit": "^4.1.3",
|
|
58
|
+
"parse-link-header": "^2.0.0",
|
|
59
|
+
"punycode": "^2.3.1",
|
|
60
|
+
"tmp-promise": "^3.0.2",
|
|
61
|
+
"ts-dedent": "^1.2.0",
|
|
62
|
+
"uuid": "^8.3.0"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@istanbuljs/nyc-config-typescript": "^0.1.3",
|
|
66
|
+
"@types/adm-zip": "^0.4.33",
|
|
67
|
+
"@types/jszip": "^3.4.1",
|
|
68
|
+
"@types/lodash": "^4.14.159",
|
|
69
|
+
"@types/request": "^2.48.5",
|
|
70
|
+
"@types/uuid": "^8.3.0",
|
|
71
|
+
"ava": "^6.1.3",
|
|
72
|
+
"codecov": "^3.5.0",
|
|
73
|
+
"gh-pages": "^5.0.0",
|
|
74
|
+
"npm-run-all": "^4.1.5",
|
|
75
|
+
"nyc": "^17.1.0",
|
|
76
|
+
"prettier": "^1.18.2",
|
|
77
|
+
"source-map-support": "^0.5.19",
|
|
78
|
+
"trash-cli": "^5.0.0",
|
|
79
|
+
"ts-loader": "^8.0.17",
|
|
80
|
+
"ts-node": "10.9.1",
|
|
81
|
+
"tsconfig-paths": "^3.9.0",
|
|
82
|
+
"tsconfig-paths-webpack-plugin": "^3.3.0",
|
|
83
|
+
"tslint": "^5.18.0",
|
|
84
|
+
"tslint-config-prettier": "^1.18.0",
|
|
85
|
+
"ttypescript": "1.5.15",
|
|
86
|
+
"typescript": "5.1.6",
|
|
87
|
+
"typescript-transform-paths": "^2.2.3",
|
|
88
|
+
"uglify-js": "3.19.3",
|
|
89
|
+
"url-polyfill": "^1.1.12",
|
|
90
|
+
"webpack": "^5.91.0",
|
|
91
|
+
"webpack-cli": "^4.5.0",
|
|
92
|
+
"webpack-node-externals": "^2.5.2"
|
|
93
|
+
},
|
|
94
|
+
"ava": {
|
|
95
|
+
"failFast": true,
|
|
105
96
|
"files": [
|
|
106
|
-
|
|
97
|
+
"src/**/*.spec.ts"
|
|
107
98
|
],
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
99
|
+
"extensions": [
|
|
100
|
+
"ts"
|
|
101
|
+
],
|
|
102
|
+
"require": [
|
|
103
|
+
"ts-node/register"
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"files": [
|
|
107
|
+
"build"
|
|
108
|
+
],
|
|
109
|
+
"config": {},
|
|
110
|
+
"prettier": {
|
|
111
|
+
"singleQuote": true,
|
|
112
|
+
"parser": "typescript",
|
|
113
|
+
"useTabs": false,
|
|
114
|
+
"tabWidth": 2,
|
|
115
|
+
"printWidth": 120,
|
|
116
|
+
"endOfLine": "lf",
|
|
117
|
+
"semi": false
|
|
118
|
+
},
|
|
119
|
+
"nyc": {
|
|
120
|
+
"extends": "@istanbuljs/nyc-config-typescript",
|
|
121
|
+
"exclude": [
|
|
122
|
+
"**/*.spec.js"
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
}
|