-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "simplejs",
"version": "1.0.0",
"description": "fe web mvvm framework",
"main": "index.js",
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"^.+\\.js?$": "babel-jest"
},
"testRegex": "/test/.*-test\\.ts$"
},
"scripts": {
"dev": "rollup -c ./build/dev.js -w",
"build": "rollup -c ./build/prod.js",
"test": "jest --notify --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bennnis/simplejs.git"
},
"author": "bennnis",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bennnis/simplejs/issues"
},
"homepage": "https://github.com/Bennnis/simplejs#readme",
"devDependencies": {
"@types/jest": "^23.1.4",
"babel-core": "^6.26.3",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.2.0",
"regenerator-runtime": "^0.12.0",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^23.0.0",
"ts-loader": "^4.4.1",
"typescript": "^2.9.2",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6"
}
}