-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.13 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
72
73
74
75
{
"name": "wescheme-js",
"version": "0.0.4",
"description": "wescheme javascript compiler",
"main": "lib/wescheme.js",
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "7.7.6",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"codemirror": "5.49.2",
"coveralls": "3.0.9",
"css-loader": "3.3.2",
"eslint": "6.7.2",
"eslint-loader": "3.0.3",
"isparta-loader": "2.0.0",
"jasmine-core": "3.5.0",
"json-loader": "0.5.7",
"karma": "4.4.1",
"karma-babel-preprocessor": "8.0.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.1",
"karma-coveralls": "2.1.0",
"karma-jasmine": "2.0.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "4.0.2",
"phantomjs-prebuilt": "2.1.16",
"pretty-js": "0.2.1",
"style-loader": "1.0.1",
"webpack": "4.41.3",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
},
"scripts": {
"compile": "webpack --config webpack-package.config.js && ./node_modules/@babel/cli/bin/babel.js -D -d lib/ src/",
"prepublish": "npm run compile",
"test": "karma start --single-run",
"test-coverage": "COVERAGE=true npm test",
"test-watch": "karma start",
"start": "webpack-dev-server --https --content-base example/ --mode development",
"start-test": "webpack-dev-server --https --port 8085 --content-base test/",
"lint": "eslint . --ext .js || true"
},
"repository": {
"type": "git",
"url": "https://github.com/bootstrapworld/wescheme-js.git"
},
"author": "Emmanuel Schanzer and Paul Carduner",
"license": "LGPL",
"bugs": {
"url": "https://github.com/bootstrapworld/wescheme-js/issues"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"Firefox >= 52",
"Safari >= 9",
"Chrome >= 60",
"IE >= 10"
]
}
}
]
]
},
"homepage": "https://github.com/bootstrapworld/wescheme-js",
"dependencies": {}
}