-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "spark-jsx",
"version": "1.0.0",
"main": "lib/bundle.iife.js",
"module": "lib/bundle.esm.js",
"browser": "lib/bundle.iife.js",
"repository": "[email protected]:Somo86/JSX_SPARK.git",
"homepage": "[email protected]:Somo86/JSX_SPARK",
"bugs": "[email protected]:Somo86/JSX_SPARK/issues",
"author": "AlbertSomoza <[email protected]>",
"license": "MIT",
"keywords": [
"jsx",
"vanilla",
"react"
],
"scripts": {
"start": "parcel example/index.html",
"build": "npm run test && rollup --config",
"test": "jest --no-cache --config jest.config.json --coverage",
"test:watch": "jest --watch --no-cache --config jest.config.json",
"linter": "eslint src/*.js --fix"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.8.0",
"babel-polyfill": "^6.26.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.3",
"jest": "^24.8.0"
},
"husky": {
"hooks": {
"pre-push": "npm run linter && npm test"
}
}
}