-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.69 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
{
"name": "@a-la/import",
"version": "1.12.0",
"description": "RegExp rules to transpile import statements into require calls (used in ÀLaMode).",
"main": "build/index.js",
"module": "src/index.js",
"scripts": {
"t": "zoroaster -a",
"test": "yarn t test/spec test/mask",
"spec": "yarn t test/spec",
"mask": "yarn t test/mask",
"test-build": "ALAMODE_ENV=test-build yarn test",
"test-all": "yarn-s test test-build",
"test-watch": "yarn test -w",
"lint": "eslint .",
"doc": "NODE_DEBUG=doc doc -o README.md",
"e": "alanode",
"example/": "yarn e example/example.js",
"build": "yarn-s b doc",
"b": "alamode src -o build -s"
},
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "git://github.com/a-la/import.git"
},
"keywords": [
"import",
"imports",
"export",
"exports",
"ECMAscript",
"ecma",
"module",
"default",
"require",
"a-la",
"regular expression",
"es6 modules",
"es6",
"CommonJS",
"cjs",
"transpile",
"transpiler",
"compile",
"compiler",
"modules",
"regex",
"babel"
],
"author": "Anton <anton@adc.sh>",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-la/import/issues"
},
"homepage": "https://github.com/a-la/import#readme",
"devDependencies": {
"@a-la/context": "^1.4.0",
"@a-la/fixture-alamode": "1.1.3",
"@a-la/fixture-babel": "1.2.2",
"alamode": "^3.5.2",
"catchment": "^3.3.0",
"documentary": "^1.37.1",
"eslint-config-artdeco": "1.0.1",
"restream": "^3.7.4",
"yarn-s": "1.2.3",
"zoroaster": "^4.3.0"
},
"dependencies": {
"fpj": "^1.3.1"
}
}