-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (51 loc) · 1.71 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
{
"name" : "@aleen42/idea",
"version" : "1.0.0",
"description" : "The IDEA cypher implementation in JavaScript",
"main" : "dist/idea.min.js",
"scripts" : {
"lint" : "eslint --ext .js .",
"prepublishOnly" : "npm run lint && npm t && npm run build",
"build" : "node build.js",
"test" : "karma start karma.config.js"
},
"repository" : {
"type" : "git",
"url" : "git+https://github.com/coremail/IDEA.git"
},
"keywords" : [
"IDEA",
"cypher"
],
"author" : "Aleen <aleen42@vip.qq.com>",
"license" : "MIT",
"bugs" : {
"url" : "https://github.com/coremail/IDEA/issues"
},
"homepage" : "https://github.com/coremail/IDEA#readme",
"devDependencies" : {
"@babel/core" : "^7.16.5",
"@babel/preset-env" : "^7.16.5",
"babel-loader" : "^8.2.3",
"core-js" : "^3.20.1",
"eslint" : "^7.4.0",
"eslint-plugin-coremail" : "0.4.1",
"terser-webpack-plugin" : "^5.3.0",
"webpack" : "^5.65.0",
"jasmine-core" : "3.7.1",
"karma" : "6.3.2",
"karma-chrome-launcher" : "^3.1.0",
"karma-detect-browsers" : "2.3.3",
"karma-edge-launcher" : "^0.4.2",
"karma-firefox-launcher" : "^2.1.0",
"karma-ie-launcher" : "^1.0.0",
"karma-jasmine" : "4.0.1",
"karma-mocha-reporter" : "2.2.5",
"karma-safari-launcher" : "^1.0.0",
"karma-sourcemap-loader" : "0.3.8",
"karma-webpack" : "5.0.0"
},
"dependencies" : {
"text-encoding" : "^0.7.0"
}
}