-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 1.98 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": "@nx-js/compiler-util",
"version": "2.0.0",
"description": "An NX util, responsible for executing code in the context of an object.",
"main": "dist/cjs.es5.js",
"module": "dist/es.es5.js",
"scripts": {
"build": "node ./scripts/build.js",
"test": "node ./scripts/test.js",
"test-builds": "node ./scripts/testBuilds.js",
"lint": "standard src/* test/*"
},
"author": {
"name": "Miklos Bertalan",
"email": "miklos.bertalan@risingstack.com"
},
"repository": {
"type": "git",
"url": "git@github.com:nx-js/compiler-util.git"
},
"bugs": {
"url": "https://github.com/nx-js/compiler-util/issues"
},
"homepage": "https://github.com/nx-js/compiler-util#readme",
"license": "MIT",
"keywords": [
"nx",
"util",
"compile",
"context",
"eval",
"code",
"expression"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "7.1.4",
"babel-minify": "^0.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"buble": "^0.19.3",
"chai": "4.1.2",
"coveralls": "^2.13.1",
"del": "^3.0.0",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^5.0.1",
"karma-source-map-support": "^1.2.0",
"mocha": "5.2.0",
"nyc": "^12.0.2",
"pre-push": "0.1.1",
"rollup": "^0.60.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-auto-external": "^1.2.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-coverage": "^0.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"standard": "11.0.1"
},
"engines": {
"node": ">=6.0.0"
},
"standard": {
"ignore": [
"test"
]
},
"pre-push": [
"lint",
"test"
]
}