forked from kissyteam/json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.43 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
{
"name": "modulex-json",
"version": "1.2.2",
"author": "yiminghe <[email protected]>",
"engines": {
"node": ">=0.10"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/modulex/json.git"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"pika-plugin-build-web-babel",
{
"format": "cjs"
}
],
[
"pika-plugin-build-web-babel",
{
"mjs": true
}
],
[
"pika-plugin-clean-dist-src"
]
]
},
"devDependencies": {
"@babel/preset-env": "^7.14.4",
"@pika/pack": "^0.5.0",
"@pika/plugin-standard-pkg": "^0.6.0",
"jest": "27.x",
"kison": "0.5.29",
"np": "^7.x",
"pika-plugin-build-web-babel": "^0.12.1",
"pika-plugin-clean-dist-src": "^0.1.1",
"prettier": "2.x"
},
"jest": {
"collectCoverageFrom": [
"src/*"
],
"testMatch": [
"**/*.test.[j|t]s?(x)"
]
},
"scripts": {
"parser": "kison -g grammar/parser-grammar.js -o src/json/parser.js",
"prettier": "prettier --write \"{src,tests}/**/*.{js,tsx,ts,jsx}\"",
"test": "jest",
"test-debug": "jest -i",
"build": "pika build",
"pub": "np --no-cleanup --no-publish --no-release-draft && npm run build && cd pkg && npm publish"
}
}