-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
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
{
"name": "string-format-full",
"version": "1.1.2",
"description": "Python string formatting mini-language, transcoded from Jython.",
"main": "dist/index.js",
"module": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "BABEL_ENV=legacy node node_modules/jest/bin/jest.js test/*.js",
"build": "BABEL_ENV=legacy node node_modules/webpack/bin/webpack.js && BABEL_ENV=legacy MINIFY_ENABLED=1 node node_modules/webpack/bin/webpack.js && BABEL_ENV=modern node node_modules/webpack/bin/webpack.js && BABEL_ENV=modern MINIFY_ENABLED=1 node node_modules/webpack/bin/webpack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doconix/string-format-full.git"
},
"keywords": [
"string",
"format",
"python",
"formatting"
],
"author": "Conan C. Albrecht",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/doconix/string-format-full/issues"
},
"homepage": "https://github.com/doconix/string-format-full#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"jest": "^27.4.7",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {}
}