-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 3.19 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
{
"name": "@jstc/core",
"version": "1.0.21",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typescript": "tsc",
"babel": " ./node_modules/.bin/babel build_core --extensions '.js' --out-dir build --no-comments --copy-files --source-maps",
"build": "npm run typescript && npm run babel && npm run uglifyjs",
"build-t": "npm run typescript && npm run babel",
"start": "npm run build && node build/index.js",
"uglifyjs": "uglifyjs-folder build -o build -e -x .js",
"typedoc": "typedoc ./src/",
"deploy": "npm run typedoc && gh-pages -d out",
"build_babel": "./node_modules/.bin/babel src --extensions '.ts,.tsx' --out-dir babel --no-comments",
"clean": "rm -rf build && rm -rf build_core"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.13",
"@babel/plugin-transform-arrow-functions": "^7.12.13",
"@babel/plugin-transform-async-to-generator": "^7.12.13",
"@babel/plugin-transform-classes": "^7.12.13",
"@babel/plugin-transform-computed-properties": "^7.12.13",
"@babel/plugin-transform-destructuring": "^7.12.13",
"@babel/plugin-transform-for-of": "^7.12.13",
"@babel/plugin-transform-member-expression-literals": "^7.12.13",
"@babel/plugin-transform-object-super": "^7.12.13",
"@babel/plugin-transform-property-literals": "^7.12.13",
"@babel/plugin-transform-spread": "^7.12.13",
"@babel/plugin-transform-template-literals": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/chalk": "^2.2.0",
"babel-jest": "^26.6.3",
"babel-plugin-minify-builtins": "^0.5.0",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-minify-guarded-expressions": "^0.4.4",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-minify-simplify": "^0.5.1",
"babel-plugin-remove-unused-vars": "^2.2.0",
"babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-merge-sibling-variables": "^6.9.4",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"fcc_typescript": "^1.0.12",
"gh-pages": "^3.1.0",
"typedoc": "^0.20.23",
"typescript": "^4.1.3"
},
"dependencies": {
"acorn": "^8.0.5",
"acorn-loose": "^8.0.2",
"acorn-node": "^2.0.1",
"acorn-walk": "^8.0.2",
"babel-core": "^6.26.3",
"chalk": "^2.4.2",
"tslib": "^2.1.0"
}
}