-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "aspect.js-babel7-poc",
"version": "0.1.0-pre.0",
"description": "Proof of concept using aspect.js with babel 7",
"engines": {
"node": ">=10.12.0"
},
"scripts": {
"build": "run-s test",
"transpile": "run-s transpile-main transpile-test",
"transpile-main": "babel --delete-dir-on-start --verbose --out-dir lib/main --copy-files src/main",
"transpile-test": "babel --delete-dir-on-start --verbose --out-dir lib/test --copy-files src/test",
"unit-integration": "nyc -x 'lib/test' mocha --opts mocha.opts 'lib/test/unit/**/*.spec.js' 'lib/test/integration/**/*.spec.js'",
"integration": "nyc -x 'lib/test' mocha --opts mocha.opts 'lib/test/integration/**/*.spec.js'",
"i": "mocha --opts mocha.opts 'src/test/integration/**/*.spec.js'",
"unit": "nyc -x 'lib/test' mocha --opts mocha.opts 'lib/test/unit/**/*.spec.js'",
"u": "mocha --opts mocha.opts 'src/test/unit/**/*.spec.js'",
"test": "run-s transpile unit-integration lint",
"lint": "standard --verbose 'src/**/*.js'",
"format": "standard --fix 'src/**/*.js'"
},
"dependencies": {
"@babel/polyfill": "7.0.0",
"aspect.js": "0.7.5",
"uuid": "3.3.2"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"babel-eslint": "10.0.1",
"chai": "4.2.0",
"dirty-chai": "2.0.1",
"intercept-stdout": "0.1.2",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"nyc": "13.1.0",
"standard": "12.0.1"
},
"babel": {
"sourceMaps": "inline",
"retainLines": true,
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
],
"plugins": [
[
"@babel/plugin-proposal-optional-chaining",
{
"loose": false
}
],
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties"
]
]
},
"standard": {
"parser": "babel-eslint"
}
}