-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
79 lines (79 loc) · 2.1 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": "snabbdom-pragma",
"version": "2.8.0",
"description": "'NotReact.createElement' pragma although for snabbdom",
"keywords": [
"snabbdom",
"pragma",
"jsx",
"createElement",
"Bublé",
"Buble",
"Babel",
"Traceur"
],
"author": "Swizz <gerodel.quentin@gmail.com>",
"license": "MIT",
"repository": "git@github.com:Swizz/snabbdom-pragma.git",
"main": "dist/index.js",
"module": "dist/index.es6.js",
"types": "snabbdom-pragma.d.ts",
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.24.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"benchmark": "^2.1.4",
"buble": "^0.17.3",
"eslint-config-xo-swizz": "^0.11.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.3",
"simple-git": "^1.92.0",
"snabbdom": "^0.6.7",
"traceur": "^0.0.111",
"typescript": "^2.3.2",
"xo": "^0.18.2"
},
"dependencies": {
"extend": "^3.0.0"
},
"scripts": {
"lint": "./node_modules/.bin/xo",
"test:prebuild": "ava --match \"trans -*\" --match \"src -*\" --match \"utils -*\"",
"test:postbuild": "ava --match \"dist -*\"",
"transpile": "./node_modules/.bin/buble -i src/ -o lib/ --no modules --objectAssign fn.assign",
"modules": "rollup -i lib/index.js -o dist/index.js -f cjs && rollup -i lib/index.js -o dist/index.es6.js -f es",
"clean": "./node_modules/.bin/rimraf 'lib/'",
"build": "npm run transpile && npm run modules && npm run clean",
"make": "npm run lint && npm run test:prebuild && npm run build && npm run test:postbuild",
"perf:all": "node perf/build-branches && node perf/run",
"perf": "node perf/run"
},
"ava": {
"files": [
"test/*-test.js"
],
"require": [
"babel-register"
]
},
"xo": {
"semicolon": false,
"space": true,
"extends": "xo-swizz",
"rules": {
"import/no-dynamic-require": "off",
"capitalized-comments": "off"
},
"ignores": [
"test/**/transform-*.js"
]
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}