-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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": "@chientrm/es",
"type": "module",
"version": "0.0.1",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npx rollup index.js --format iife --name 'es' --file dist/es.js",
"test": "npx mocha -r esm src/*.test.js src/**/*.test.js",
"awesome": "npx mocha -r esm --reporter mochawesome",
"lint": "npx eslint *.js",
"loc": "find src/*.js src/**/*.js | xargs wc -l",
"testLoc": "find src/*.test.js src/**/*.test.js | xargs wc -l",
"lcov": "npx c8 -r lcovonly npm test",
"coverage": "npx c8 npm test",
"cleanForPublish": "rm -rf docs src/*.test.js src/**/*.test.js .github"
},
"author": "Chien Tran",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"c8": "^7.14.0",
"chai": "^4.3.8",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.10.0",
"esm": "^3.2.25",
"mocha": "^9.2.2",
"mochawesome": "^7.1.3",
"rollup": "^2.79.1"
},
"repository": {
"type": "git",
"url": "https://github.com/chientrm/es.git"
},
"keywords": [
"scripting",
"expression",
"native",
"escript",
"learning",
"operator",
"operand",
"virtual machine",
"transpilation"
]
}