-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
{
"name": "schwartzman",
"version": "0.9.2",
"description": "Webpack loader for Mustache",
"main": "dist/schwartzman.js",
"repository": {
"type": "git",
"url": "https://github.com/zemlanin/schwartzman.git"
},
"scripts": {
"build": "canopy src/grammar.peg --lang js && npm run webpack",
"prepare": "npm run build",
"test": "NODE_ENV=test mocha",
"webpack": "webpack",
"examples": "npm run build && webpack --config webpack.examples.config.js",
"peer:react": "sh -c 'npm install -g --prefix test/peer/react-$0 react@$0 react-dom@$0'",
"lint": "npm run eslint && npm run prettier -- -l",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write",
"prettier": "prettier \"./*.{js,yml,yaml}\" \"./{.github,src,test}/**/*.{js,yml,yaml}\" --ignore-path=\".gitignore\"",
"eslint": "eslint \"./*.js\" \"./{.github,src,test}/**/*.js\" --ignore-path=\".gitignore\""
},
"author": "Anton Verinov <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/zemlanin/schwartzman",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.14.0",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.14.0",
"canopy": "^0.3.0",
"eslint": "^7.0.0",
"mocha": "^7.1.1",
"mockery": "^2.1.0",
"mustache": "^3.2.0",
"prettier": "^1.19.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"semver": "^5.4.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"loader-utils": "^1.2.3"
},
"peerDependencies": {
"react": "^0.14.3 || ^15.6.1 || ^16.0.0 || ^17.0.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": false,
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 9
},
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
],
"require-atomic-updates": 0
}
}
}