-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.01 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
76
77
78
79
{
"name": "@lightscript/parser",
"version": "4.0.0-alpha.34",
"description": "Parser for the LightScript language.",
"homepage": "https://lightscript.org/",
"license": "MIT",
"keywords": [
"babel",
"lightscript",
"parser"
],
"repository": "https://github.com/wcjohnson/lightscript-parser",
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@oigroup/babel-preset-lightscript": "^3.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-charcodes": "^0.1.0",
"charcodes": "0.1.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"jest": "^23.5.0",
"lodash": "^4.17.11",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^3.4.0",
"unicode-11.0.0": "^0.7.8"
},
"bin": {
"lightscript-parser": "./bin/lightscript-parser.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"commitizen": "commitizen",
"commit": "git-cz",
"clean": "rimraf lib coverage .nyc_output",
"build": "run-s build:rollup",
"build:rollup": "rollup -c",
"build:runner": "babel -x \".lsc\" test/helpers --out-dir test/helpers",
"test": "run-s clean build test:only",
"test:only": "jest",
"test:parseFixture": "node bin/lightscript-parser.js fixture",
"test:debugFixture": "node --inspect-brk bin/lightscript-parser.js fixture"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"lsc"
],
"transform": {
"\\.lsc$": "<rootDir>/scripts/lightscript.jest.js",
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "test/index\\.js$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
}
}